Skip to content

Instantly share code, notes, and snippets.

@tokizuoh
Last active April 13, 2024 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokizuoh/971f2791f0bff282dac95886f3d14e6c to your computer and use it in GitHub Desktop.
Save tokizuoh/971f2791f0bff282dac95886f3d14e6c to your computer and use it in GitHub Desktop.
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
Task.detached {
let y = Y()
await y.f()
}
}
}
protocol P {
@MainActor func f()
}
struct Y: P {
func f() {
print(Thread.isMainThread) // true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment