mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
288 B
Swift
15 lines
288 B
Swift
@_exported import ProtoWithInitializer
|
|
@_exported import TypeAndValue
|
|
|
|
public class Impl : InitProto {
|
|
@objc public required init(int i: CInt) {}
|
|
|
|
public func takeStruct(_ input: testStruct) {
|
|
testStruct(input)
|
|
}
|
|
|
|
public func getEnum() -> testEnum {
|
|
return testEnum
|
|
}
|
|
}
|