We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c81c5b6 commit 2b550b7Copy full SHA for 2b550b7
CHANGELOG.md
@@ -15,7 +15,7 @@ Swift 5.5
15
```swift
16
actor Account: Hashable {
17
let idNumber: Int
18
- let balance: Double
+ var balance: Double
19
20
nonisolated func hash(into hasher: inout Hasher) { // okay, non-isolated satisfies synchronous requirement
21
hasher.combine(idNumber) // okay, can reference idNumber from outside the let
0 commit comments