Avatar
Avatar
omochimetaru
@swift-6.1-dev @swift-6.0.3 @swift-5.10.1 import SwiftUI var foo = doesntExist // expected-error {{cannot find 'doesntExist' in scope}} struct ContentView: View { var body: some View { VStack { Text(verbatim: foo) } } }
exit status: 1 with <stdin>:1:8: error: no such module 'SwiftUI' 1 | import SwiftUI | `- error: no such module 'SwiftUI' 2 | 3 | var foo = doesntExist // expected-error {{cannot find 'doesntExist' in scope}}