mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
247 B
Swift
16 lines
247 B
Swift
// RUN: %target-swift-frontend -emit-ir %s
|
|
|
|
struct Horse {}
|
|
|
|
class Reproducer {
|
|
lazy var barn: Any = {
|
|
class Barn {
|
|
var horse: Horse {
|
|
return Horse()
|
|
}
|
|
}
|
|
return Barn()
|
|
}()
|
|
}
|
|
|