Files
swift-mirror/test/ClangModules/Inputs/SerializationHelper.swift
Jordan Rose 6e1bf0d10d Rename @exported to @_exported for now.
At some point I want to propose a revised model for exports, but for now
just mark that support for '@exported' is still experimental and subject
to change. (Thanks, Max.)
2015-11-05 11:59:00 -08:00

17 lines
305 B
Swift

import Foundation
@_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
}
}