Files
swift-mirror/test/SILGen/argument_labels.swift
2020-03-19 02:20:21 -04:00

22 lines
609 B
Swift

// 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)
}