mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
34 lines
1.3 KiB
Swift
34 lines
1.3 KiB
Swift
// RUN: %target-swift-emit-silgen %s | %FileCheck %s
|
|
|
|
@resultBuilder
|
|
struct Builder {
|
|
static func buildBlock<T1>(_ t1: T1) -> (T1) {
|
|
return (t1)
|
|
}
|
|
}
|
|
|
|
struct Handler {
|
|
var firstHandler: () -> ()
|
|
var secondHandler: () -> ()
|
|
}
|
|
|
|
// We were neglecting to assign discriminators and re-parent
|
|
// autoclosures, which would manifest as curried method references
|
|
// producing a bogus diagnostic about captures from inside a
|
|
// nested type.
|
|
class Outer {
|
|
struct Inner {
|
|
@Builder
|
|
var build: Handler {
|
|
Handler(firstHandler: self.handler, secondHandler: self.handler)
|
|
}
|
|
|
|
private func handler() {}
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: sil private [ossa] @$s27result_builder_curry_thunks5OuterC5InnerV5buildAA7HandlerVvgyycAEcfu_ : $@convention(thin) (Outer.Inner) -> @owned @callee_guaranteed () -> ()
|
|
// CHECK-LABEL: sil private [ossa] @$s27result_builder_curry_thunks5OuterC5InnerV5buildAA7HandlerVvgyycAEcfu_yycfu0_ : $@convention(thin) (Outer.Inner) -> ()
|
|
// CHECK-LABEL: sil private [ossa] @$s27result_builder_curry_thunks5OuterC5InnerV7handler33_{{.*}} : $@convention(method) (Outer.Inner) -> ()
|
|
// CHECK-LABEL: sil private [ossa] @$s27result_builder_curry_thunks5OuterC5InnerV5buildAA7HandlerVvgyycAEcfu1_ : $@convention(thin) (Outer.Inner) -> @owned @callee_guaranteed () -> ()
|