// RUN: %target-swift-emit-silgen -Xllvm -sil-print-types %s | %FileCheck %s struct S { func callAsFunction(_ x: Int) -> Int! { nil } } protocol P1 { func callAsFunction() } protocol P2 { func callAsFunction() -> Self } class C { func callAsFunction(_ x: String) -> Self { return self } } // CHECK-LABEL: sil hidden [ossa] @$s16call_as_function05test_a1_b1_C0yyAA1SV_AA2P1_pAA2P2_pxtAA1CCRbzlF : $@convention(thin) (S, @in_guaranteed any P1, @in_guaranteed any P2, @guaranteed T) -> () func test_call_as_function(_ s: S, _ p1: P1, _ p2: P2, _ t: T) { // CHECK: function_ref @$s16call_as_function1SV0A10AsFunctionySiSgSiF : $@convention(method) (Int, S) -> Optional // CHECK: switch_enum %{{.+}} : $Optional let _: Int = s(0) // https://github.com/apple/swift/issues/55035 // SILGen crash on existential callAsFunction. // // CHECK: witness_method $@opened({{.+}}, any P1) Self, #P1.callAsFunction : (Self) -> () -> () p1() // CHECK: witness_method $@opened({{.+}}, any P2) Self, #P2.callAsFunction : (Self) -> () -> Self _ = p2() // CHECK: class_method %{{.+}} : $C, #C.callAsFunction : (C) -> (String) -> @dynamic_self C, $@convention(method) (@guaranteed String, @guaranteed C) -> @owned C // CHECK: unchecked_ref_cast %{{.+}} : $C to $T _ = t("") }