blob: e1877b1e58b221d3c1c703ca86e8af73a50518ce [file] [log] [blame]
import Foundation
public struct MyStruct {
static public func myMethod(label1 param1: Int, param2: MyOtherStruct) -> MyOtherStruct {
return MyOtherStruct()
}
static public func myMethod2() -> Void {
1 + 1
}
static public func myMethod3() {
1 + 1
}
}
public struct MyOtherStruct {}