Skip to content

Commit 82f7fbf

Browse files
committed
comments
1 parent a48dec1 commit 82f7fbf

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

bk1ch05zp08MainActorIsolation/MainActorIsolation/ViewController.swift

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class ViewController: UIViewController {
3737
// so it looks like @MainActor class status is _not_ inherited
3838
// at least not by non-override methods
3939
// but the proposal says it should be, so I regard that as a bug
40+
// still the same in RC
4041
await self.viewControllerMethod()
4142
}
4243
}

bk1ch05zp17HashableActor/HashableActor/ViewController.swift

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ actor BankAccount {
1111

1212
// according to the proposal, this should allow BankAccount to adopt Hashable
1313
// but it doesn't; I've reported this as a bug
14+
// still there in RC
1415
extension BankAccount: Hashable {
1516
nonisolated func hash(into hasher: inout Hasher) {
1617
hasher.combine(accountNumber)

0 commit comments

Comments
 (0)