Files
swift-mirror/test/ClangImporter/Inputs/SerializationHelper.swift
Jordan Rose 61798ff6ec [test] Rename test/ClangModules to test/ClangImporter. (#5618)
...to match the component in include/ and lib/. No content change.
2016-11-02 18:00:53 -07:00

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
}
}