blob: 03d20c105ac844eb68ffe2a05c5ca38871503e3a [file] [log] [blame]
// RUN: %target-swift-frontend -emit-silgen -suppress-argument-labels-in-types %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 @_TF15argument_labels7testFoo
func testFoo(foo: Foo, x: X, y: Y) {
// CHECK: class_method %0 : $Foo, #Foo.doSomething!1 : (Foo) -> (X, Y) -> ()
foo.doSomething(x: x, y: y)
// CHECK: class_method %0 : $Foo, #Foo.doSomethingElse!1 : (Foo) -> (X) -> ()
foo.doSomethingElse(x: x)
}