Files
swift-mirror/test/SIL/Serialization/Inputs/vtable_deserialization_input.swift
2014-07-08 02:17:49 +00:00

19 lines
243 B
Swift

public protocol P {
func doSomething()
}
@asmname("unknown") public
func unknown() -> ()
public class Y : P {
public func doAnotherThing() {
unknown()
}
public func doSomething() {
doAnotherThing()
}
public init() {}
}