mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
173 B
Swift
12 lines
173 B
Swift
struct LazyContainer {
|
|
lazy var lazyVar = 42
|
|
}
|
|
|
|
@inline(never)
|
|
func useLazyContainer(_ container: LazyContainer) {}
|
|
|
|
|
|
class LazyContainerClass {
|
|
lazy var lazyVar = 42
|
|
}
|