blob: 2d59c02bfee79cc6a35289a9bcd1f2a54879123f [file] [log] [blame]
// RUN: %target-swift-emit-silgen %s | %FileCheck %s
protocol Runcible {
func runce(x: Int)
}
// CHECK-LABEL: sil private [transparent] [thunk] @$s20witness_single_tuple3FooVAA8RuncibleA2aDP5runce{{[_0-9a-zA-Z]*}}FTW
struct Foo: Runcible {
func runce(x: Int = 0) {}
}