mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
211 B
Swift
11 lines
211 B
Swift
// RUN: %target-typecheck-verify-swift %S/Inputs/sendable_cycle_other.swift -disable-availability-checking
|
|
// REQUIRES: concurrency
|
|
|
|
struct Bar {
|
|
lazy var foo = {
|
|
self.x()
|
|
}
|
|
|
|
func x() -> Int { 42 }
|
|
}
|