Avatar
@swift-main -warn-concurrency func const() -> Int { 42 } let const2: Int = 42 actor A { init() { _ = const() _ = const2 } } (edited)