1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
// RUN: %target-typecheck-verify-swift
// Currently disabled by default
let a = if .random() {
print("hello")
6 // expected-warning {{integer literal is unused}}
} else { // expected-error {{non-expression branch of 'if' expression may only end with a 'throw'}}
7
}
let b = if .random() {
// expected-warning@-1 {{constant 'b' inferred to have type 'Void', which may be unexpected}}
// expected-note@-2 {{add an explicit type annotation to silence this warning}}
print("hello")
if .random() { 5 } else { 6 } // expected-warning 2{{integer literal is unused}}
} else { // expected-error {{non-expression branch of 'if' expression may only end with a 'throw'}}
let x = 7
x // expected-warning {{expression of type 'Int' is unused}}
} // expected-error {{non-expression branch of 'if' expression may only end with a 'throw'}}
let c = switch Bool.random() {
// expected-warning@-1 {{constant 'c' inferred to have type 'Void', which may be unexpected}}
// expected-note@-2 {{add an explicit type annotation to silence this warning}}
case true:
print("hello")
6 // expected-warning {{integer literal is unused}}
case false: // expected-error@-1 {{non-expression branch of 'switch' expression may only end with a 'throw'}}
()
7 // expected-warning {{integer literal is unused}}
} // expected-error@-1 {{non-expression branch of 'switch' expression may only end with a 'throw'}}
let d = switch Bool.random() {
case true:
print("hello")
if .random() { 5 } else { 6 } // expected-warning 2{{integer literal is unused}}
case false: // expected-error@-1 {{non-expression branch of 'switch' expression may only end with a 'throw'}}
7
}
let e = if .random() {
// expected-warning@-1 {{constant 'e' inferred to have type 'Void', which may be unexpected}}
// expected-note@-2 {{add an explicit type annotation to silence this warning}}
if .random() {
()
1 // expected-warning {{integer literal is unused}}
} else { // expected-error {{non-expression branch of 'if' expression may only end with a 'throw'}}
()
2 // expected-warning {{integer literal is unused}}
} // expected-error {{non-expression branch of 'if' expression may only end with a 'throw'}}
} else {
switch Bool.random() {
case true:
()
0 // expected-warning {{integer literal is unused}}
case false: // expected-error@-1 {{non-expression branch of 'switch' expression may only end with a 'throw'}}
()
1 // expected-warning {{integer literal is unused}}
} // expected-error@-1 {{non-expression branch of 'switch' expression may only end with a 'throw'}}
}
func testFn1() -> Int {
print("hello")
0 // expected-warning {{integer literal is unused}}
}
func takesFn(_ fn: () -> Int) {}
func testClosure1() {
takesFn {
()
0 // expected-warning {{integer literal is unused}}
}
}
func testClosure2() {
let fn = {
()
if .random() { 0 } else { 1 } // expected-warning 2{{integer literal is unused}}
}
takesFn(fn) // expected-error {{cannot convert value of type '() -> ()' to expected argument type '() -> Int'}}
}
|