Files
swift-mirror/validation-test/Sema/SwiftUI/rdar70880670.swift
Pavel Yaskevich c83eefc41a [Tests] NFC: Re-enable rdar://57201781 and rdar://70880670
A crash that was causing these tests to fail has been resolved.
2025-03-12 11:50:10 -07:00

17 lines
393 B
Swift

// RUN: %target-typecheck-verify-swift -target %target-cpu-apple-macosx10.15 -swift-version 5
// REQUIRES: objc_interop
// REQUIRES: OS=macosx
// https://github.com/swiftlang/swift/issues/79255
import SwiftUI
var foo = doesntExist // expected-error {{cannot find 'doesntExist' in scope}}
struct ContentView: View {
var body: some View {
VStack {
Text(verbatim: foo)
}
}
}