mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
25 lines
604 B
Swift
25 lines
604 B
Swift
// RUN: %target-typecheck-verify-swift -target x86_64-apple-macosx10.15 -swift-version 5
|
|
// REQUIRES: objc_interop
|
|
// REQUIRES: OS=macosx
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView : View {
|
|
@State var foo: [String] = Array(repeating: "", count: 5)
|
|
|
|
var body: some View {
|
|
VStack { // expected-error{{type of expression is ambiguous without more context}}
|
|
HStack {
|
|
Text("")
|
|
TextFi // expected-error {{use of unresolved identifier 'TextFi'}}
|
|
}
|
|
|
|
ForEach(0 ... 4, id: \.self) { i in
|
|
HStack {
|
|
TextField("", text: self.$foo[i])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|