blob: 22d26adf46edf9ce22fe28058ef11ea11efbd2bc [file] [log] [blame]
// RUN: %target-swift-frontend -emit-silgen -verify %s
// SR-3090:
class Box<T> {
public let value: T
public init(_ value: T) {
self.value = value
}
}
let box = Box((22, { () in }))
let foo = box.value.0
print(foo)