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
| /* | |
| Eventually throws a EXC_BAD_ACCESS, reliably around iteration 130688, I think due to stack overflow. | |
| https://share.cleanshot.com/qQdj9ygc | |
| */ | |
| import SwiftUI | |
| @Observable | |
| class MyObservableCounter { | |
| var value = 0 |
OlderNewer