This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
class MutableState { | |
var value: Int | |
init(value: Int) { | |
self.value = value | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import AVFoundation | |
// Using Xcode Version 16.0 beta (16A5171c), Swift 6 language mode. | |
// This compiles. | |
actor GoodActor { | |
var value = 0 | |
func test() { |