We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 387ef8f commit 7cb6cd6Copy full SHA for 7cb6cd6
test/Sema/typo_correction.swift
@@ -144,3 +144,15 @@ func test_overloaded() {
144
overloadd(0)
145
// expected-error@-1 {{use of unresolved identifier 'overloadd'; did you mean 'overloaded'?}}{{3-12=overloaded}}
146
}
147
+
148
+// This is one of the backtraces from rdar://36434823 but got fixed along
149
+// the way.
150
+class CircularValidationWithTypo {
151
+ var cdcdcdcd = ababab { // expected-error {{use of unresolved identifier 'ababab'}}
152
+ didSet { }
153
+ }
154
155
+ var abababab = cdcdcdc { // expected-error {{use of unresolved identifier 'cdcdcdc'}}
156
157
158
+}
0 commit comments