blob: 36df9efbfcc2fc44b611a92ce2eec00f9ba9adfb [file] [log] [blame]
// RUN: %target-swift-emit-silgen -module-name argument_labels %s | %FileCheck %s
public struct X { }
public struct Y { }
public class Foo {
func doSomething(x: X, y: Y) { }
func doSomethingElse(x: X) { }
}
// CHECK-LABEL: sil hidden [ossa] @$s15argument_labels7testFoo{{[_0-9a-zA-Z]*}}F
// CHECK: bb0([[ARG0:%.*]] : @guaranteed $Foo,
func testFoo(foo: Foo, x: X, y: Y) {
// CHECK: class_method [[ARG0]] : $Foo, #Foo.doSomething : (Foo) -> (X, Y) -> ()
foo.doSomething(x: x, y: y)
// CHECK: class_method [[ARG0]] : $Foo, #Foo.doSomethingElse : (Foo) -> (X) -> ()
foo.doSomethingElse(x: x)
}