mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
1. Make sure the actions taken by fixits are reflected in diagnostics messages. 2. Issue missing cases diagnostics at the start of the switch statement instead of its end. 3. Use <#code#> instead of <#Code#> in the stub.
19 lines
513 B
Swift
19 lines
513 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}}
|
|
switch i { // expected-error {{unresolved identifier}} expected-error{{'switch' statement body must have at least one 'case'}}
|
|
}
|
|
// expected-error@+1 2 {{expected '}'}}
|