mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Previously, property names are hidden in the whole range of the declarations. Now, it's only hidden in its own initializer range. rdar://problem/49697202
19 lines
578 B
Swift
19 lines
578 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
func test1() {
|
|
var a : Int {
|
|
#if arch(x86_64)
|
|
return 0
|
|
#else
|
|
return 1
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// Would trigger assertion when AST verifier checks source ranges ("child source range not contained within its parent")
|
|
func test2() { // expected-note {{match}}
|
|
var a : Int { // expected-note {{match}} expected-note {{'a' declared here}}
|
|
switch i { // expected-error {{use of unresolved identifier 'i'; did you mean 'a'}} expected-error{{'switch' statement body must have at least one 'case'}}
|
|
}
|
|
// expected-error@+1 2 {{expected '}'}}
|