Avatar
@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) } } }