You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Concurrency] memberAccessHasSpecialPermissionInSwift5 should treat init accessors as stored properties
Init accessor properties cannot escape self and are only allowed
to initialized and access a set of properties declared in their
`@storageRestrictions(...)` attribute.
Resolves: #70550
Copy file name to clipboardExpand all lines: test/Concurrency/flow_isolation.swift
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -734,3 +734,28 @@ actor CheckDeinitFromActor {
734
734
ns =nil // expected-warning {{cannot access property 'ns' with a non-sendable type 'NonSendableType?' from non-isolated deinit; this is an error in Swift 6}}
0 commit comments