// RUN: %target-swift-frontend -emit-silgen %s | FileCheck %s // Verify that reabstraction happens when forming container literals. // // CHECK-LABEL: sil hidden @_TF25array_literal_abstraction14array_of_funcsFT_GSaFT_T__ // CHECK: pointer_to_address {{.*}} $*@callee_owned (@out (), @in ()) -> () func array_of_funcs() -> [(() -> ())] { return [{}, {}] } // CHECK-LABEL: sil hidden @_TF25array_literal_abstraction13dict_of_funcsFT_GVSs10DictionarySiFT_T__ // CHECK: pointer_to_address {{.*}} $*(Int, @callee_owned (@out (), @in ()) -> ()) func dict_of_funcs() -> Dictionary ()> { return [0: {}, 1: {}] } func vararg_funcs(fs: (() -> ())...) {} // CHECK-LABEL: sil hidden @_TF25array_literal_abstraction17call_vararg_funcsFT_T_ // CHECK: pointer_to_address {{.*}} $*@callee_owned (@out (), @in ()) -> () func call_vararg_funcs() { vararg_funcs({}, {}) }