Avatar
Avatar
omochimetaru
@swift-main import SwiftUI var foo = doesntExist // expected-error {{cannot find 'doesntExist' in scope}} struct ContentView: View { var body: some View { VStack { Text(verbatim: foo) } } }
swiftNightly BOT 12/15/2024 12:02 PM
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}}