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 83 84 85 86 87 88 89 90 91 92 93 94 95
|
// RUN: %target-typecheck-verify-swift
struct Foo {
static var someVar: Foo = Foo()
static var someOptVar: Foo? = Foo()
static func someFunc() -> Foo {}
static func someOptFunc() -> Foo? {}
}
func nonOptContext() -> Foo {
switch () {
case ():
return .someVar
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptVar
// expected-error@-1 {{value of optional type 'Foo?' must be unwrapped to a value of type 'Foo'}}
// expected-note@-2 {{coalesce}}
// expected-note@-3 {{force-unwrap}}
// TODO
//case ():
// return .someOptVar!
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someFunc()
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptFunc()
// expected-error@-1 {{value of optional type 'Foo?' must be unwrapped to a value of type 'Foo'}}
// expected-note@-2 {{coalesce}}
// expected-note@-3 {{force-unwrap}}
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptFunc()!
}
}
func optContext() -> Foo? {
switch () {
case ():
return .someVar
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptVar
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someFunc()
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptFunc()
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .some(.someVar)
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .none
}
}
func iuoContext() -> Foo! {
switch () {
case ():
return .someVar
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptVar
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someFunc()
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .someOptFunc()
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .some(.someVar)
case (): // expected-warning {{case is already handled by previous patterns; consider removing it}}
return .none
}
}
// Favor the outermost type if the member appears at multiple levels of
// unwrapping.
func nestedOptContext() -> Foo?? {
return .none
}
// <rdar://problem/35945827>
// This should diagnose instead of crashing in SILGen
protocol Horse {
static var palomino: Horse { get }
}
func rideAHorse(_ horse: Horse?) {}
rideAHorse(.palomino)
// expected-error@-1 {{static member 'palomino' cannot be used on protocol metatype '(any Horse).Type'}}
// FIXME: This should work if the static member is part of a class though
class Donkey {
static var mule: Donkey & Horse { while true {} }
}
func rideAMule(_ mule: (Horse & Donkey)?) {}
rideAMule(.mule)
// expected-error@-1 {{static member 'mule' cannot be used on protocol metatype '(any Donkey & Horse).Type'}}
|