Files
swift-mirror/test/ClangModules/Inputs/SerializationHelper.swift
T
Jordan Rose e56e0f653b [test] Clean up two importer+serialization tests.
...and give them a proper "REQUIRES: objc_interop" instead of "XFAIL: linux".
2016-03-21 17:56:20 -07:00

15 lines
286 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
}
}