Avatar
@swift-6.2.3 struct Foo: ~Escapable { let value: Int init() { self.value = 2 } } func f() async { let foo = Foo() await g() print(foo.value) } func g() async {} (edited)