blob: 3dc241270f16f7ac2c8f06e0e19cf9d10b2ad5ae [file] [log] [blame]
// RUN: %target-swift-emit-silgen -enable-sil-ownership %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) {}
}