Skip to content

Commit d8ade63

Browse files
committed
[TypeChecker] NFC: Un-XFAIL SwiftUI test-case which has been fixed
Test-case should no longer produce "type of expression is ambiguous" fallback diagnostic. Resolves: rdar://66110075
1 parent 94623f0 commit d8ade63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

validation-test/Sema/SwiftUI/rdar57201781.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %target-typecheck-verify-swift -target x86_64-apple-macosx10.15 -swift-version 5
2-
// REQUIRES: rdar66110075
2+
33
// REQUIRES: objc_interop
44
// REQUIRES: OS=macosx
55

@@ -9,7 +9,7 @@ struct ContentView : View {
99
@State var foo: [String] = Array(repeating: "", count: 5)
1010

1111
var body: some View {
12-
VStack { // expected-error{{type of expression is ambiguous without more context}}
12+
VStack {
1313
HStack {
1414
Text("")
1515
TextFi // expected-error {{cannot find 'TextFi' in scope}}

0 commit comments

Comments
 (0)