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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
// RUN: %target-typecheck-verify-swift
let x: _ = 0 // expected-error {{placeholder type may not appear as type of a variable}} expected-note {{replace the placeholder with the inferred type 'Int'}} {{8-9=Int}}
let x2 = x
var x3: _ { // expected-error {{type placeholder not allowed here}}
get { 42 }
}
let dict1: [_: Int] = ["hi": 0]
let dict2: [Character: _] = ["h": 0]
let arr = [_](repeating: "hi", count: 3)
func foo(_ arr: [_] = [0]) {} // expected-error {{type placeholder may not appear in top-level parameter}}
// expected-note@-1 {{replace the placeholder with the inferred type 'Int'}}
let foo = _.foo // expected-error {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
let zero: _ = .zero // expected-error {{cannot infer contextual base in reference to member 'zero'}}
struct S<T> {
var x: T
}
var s1: S<_> = .init(x: 0)
var s2 = S<_>(x: 0)
let losslessStringConverter = Double.init as (String) -> _?
let optInt: _? = 0
let implicitOptInt: _! = 0
let func1: (_) -> Double = { (x: Int) in 0.0 }
let func2: (Int) -> _ = { x in 0.0 }
let func3: (_) -> _ = { (x: Int) in 0.0 }
let func4: (_, String) -> _ = { (x: Int, y: String) in 0.0 }
let func5: (_, String) -> _ = { (x: Int, y: Double) in 0.0 } // expected-error {{cannot convert value of type '(Int, Double) -> Double' to specified type '(_, String) -> _'}}
let type: _.Type = Int.self
let type2: Int.Type.Type = _.Type.self
struct MyType1<T, U> {
init(t: T, mt2: MyType2<T>) where U == MyType2<T> {}
}
struct MyType2<T> {
init(t: T) {}
}
let _: MyType2<_> = .init(t: "c" as Character)
let _: MyType1<_, MyType2<_>> = .init(t: "s" as Character, mt2: .init(t: "c" as Character))
func dictionary<K, V>(ofType: [K: V].Type) -> [K: V] { [:] }
let _: [String: _] = dictionary(ofType: [_: Int].self)
let _: [_: _] = dictionary(ofType: [String: Int].self)
let _: [String: Int] = dictionary(ofType: _.self) // expected-error {{type placeholder not allowed here}}
let _: @convention(c) _ = { 0 } // expected-error {{@convention attribute only applies to function types}}
let _: @convention(c) (_) -> _ = { (x: Double) in 0 }
let _: @convention(c) (_) -> Int = { (x: Double) in 0 }
struct NonObjc {}
let _: @convention(c) (_) -> Int = { (x: NonObjc) in 0 } // expected-error {{'(NonObjc) -> Int' is not representable in Objective-C, so it cannot be used with '@convention(c)'}}
func overload() -> Int? { 0 }
func overload() -> String { "" }
let _: _? = overload()
let _ = overload() as _?
struct Bar<T, U>
where T: ExpressibleByIntegerLiteral, U: ExpressibleByIntegerLiteral {
var t: T
var u: U
func frobnicate() -> Bar {
return Bar(t: 42, u: 42)
}
}
extension Bar {
func frobnicate2() -> Bar<_, _> { // expected-error {{type placeholder may not appear in function return type}}
// expected-note@-1 {{replace the placeholder with the inferred type 'T'}}
// expected-note@-2 {{replace the placeholder with the inferred type 'U'}}
return Bar(t: 42, u: 42)
}
func frobnicate3() -> Bar {
return Bar<_, _>(t: 42, u: 42)
}
func frobnicate4() -> Bar<_, _> { // expected-error {{type placeholder may not appear in function return type}}
// expected-note@-1 {{replace the placeholder with the inferred type 'Int'}}
// expected-note@-2 {{replace the placeholder with the inferred type 'Int'}}
return Bar<_, _>(t: 42, u: 42)
}
func frobnicate5() -> Bar<_, U> { // expected-error {{type placeholder may not appear in function return type}}
// expected-note@-1 {{replace the placeholder with the inferred type 'T'}}
return Bar(t: 42, u: 42)
}
func frobnicate6() -> Bar {
return Bar<_, U>(t: 42, u: 42)
}
func frobnicate7() -> Bar<_, _> { // expected-error {{type placeholder may not appear in function return type}}
// expected-note@-1 {{replace the placeholder with the inferred type 'Int'}}
// expected-note@-2 {{replace the placeholder with the inferred type 'U'}}
return Bar<_, U>(t: 42, u: 42)
}
func frobnicate8() -> Bar<_, U> { // expected-error {{type placeholder may not appear in function return type}}
// expected-note@-1 {{replace the placeholder with the inferred type 'Int'}}
return Bar<_, _>(t: 42, u: 42)
}
}
// FIXME: We should probably have better diagnostics for these situations--the user probably meant to use implicit member syntax
let _: Int = _() // expected-error {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
let _: () -> Int = { _() } // expected-error 2 {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
let _: Int = _.init() // expected-error {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
let _: () -> Int = { _.init() } // expected-error 2 {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
func returnsInt() -> Int { _() } // expected-error {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
func returnsIntClosure() -> () -> Int { { _() } } // expected-error 2 {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
func returnsInt2() -> Int { _.init() } // expected-error {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
func returnsIntClosure2() -> () -> Int { { _.init() } } // expected-error 2 {{type placeholder not allowed here}} expected-error {{could not infer type for placeholder}}
let _: Int.Type = _ // expected-error {{'_' can only appear in a pattern or on the left side of an assignment}}
let _: Int.Type = _.self // expected-error {{type placeholder not allowed here}}
struct SomeSuperLongAndComplexType {}
func getSomething() -> SomeSuperLongAndComplexType? { .init() }
let something: _! = getSomething()
extension Array where Element == Int {
static var staticMember: Self { [] }
static func staticFunc() -> Self { [] }
var member: Self { [] }
func method() -> Self { [] }
}
extension Array {
static var otherStaticMember: Self { [] }
}
let _ = [_].staticMember
let _ = [_].staticFunc()
let _ = [_].otherStaticMember.member
let _ = [_].otherStaticMember.method()
func f(x: Any, arr: [Int]) {
// FIXME: Better diagnostics here. Maybe we should suggest replacing placeholders with 'Any'?
if x is _ {} // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
if x is [_] {} // expected-error {{type of expression is ambiguous without a type annotation}}
if x is () -> _ {} // expected-error {{type of expression is ambiguous without a type annotation}}
if let y = x as? _ {} // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
if let y = x as? [_] {} // expected-error {{type of expression is ambiguous without a type annotation}}
if let y = x as? () -> _ {} // expected-error {{type of expression is ambiguous without a type annotation}}
let y1 = x as! _ // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
let y2 = x as! [_] // expected-error {{type of expression is ambiguous without a type annotation}}
let y3 = x as! () -> _ // expected-error {{type of expression is ambiguous without a type annotation}}
switch x {
case is _: break // expected-error {{type placeholder not allowed here}}
case is [_]: break // expected-error {{type placeholder not allowed here}}
case is () -> _: break // expected-error {{type placeholder not allowed here}}
case let y as _: break // expected-error {{type placeholder not allowed here}}
case let y as [_]: break // expected-error {{type placeholder not allowed here}}
case let y as () -> _: break // expected-error {{type placeholder not allowed here}}
}
if arr is _ {} // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
if arr is [_] {} // expected-error {{type of expression is ambiguous without a type annotation}}
if arr is () -> _ {} // expected-error {{type of expression is ambiguous without a type annotation}}
if let y = arr as? _ {} // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
if let y = arr as? [_] {} // expected-error {{type of expression is ambiguous without a type annotation}}
if let y = arr as? () -> _ {} // expected-error {{type of expression is ambiguous without a type annotation}}
let y1 = arr as! _ // expected-error {{type placeholder not allowed here}} expected-error {{type of expression is ambiguous without a type annotation}}
let y2 = arr as! [_] // expected-error {{type of expression is ambiguous without a type annotation}}
let y3 = arr as! () -> _ // expected-error {{type of expression is ambiguous without a type annotation}}
switch arr {
case is _: break // expected-error {{type placeholder not allowed here}}
case is [_]: break // expected-error {{type placeholder not allowed here}}
case is () -> _: break // expected-error {{type placeholder not allowed here}}
case let y as _: break // expected-error {{type placeholder not allowed here}}
case let y as [_]: break // expected-error {{type placeholder not allowed here}}
case let y as () -> _: break // expected-error {{type placeholder not allowed here}}
}
}
protocol Publisher {
associatedtype Output
associatedtype Failure
}
struct Just<Output>: Publisher {
typealias Failure = Never
}
struct SetFailureType<Output, Failure>: Publisher {}
extension Publisher {
func setFailureType<T>(to: T.Type) -> SetFailureType<Output, T> { // expected-note 2 {{in call to function 'setFailureType(to:)'}}
return .init()
}
}
let _: SetFailureType<Int, String> = Just<Int>().setFailureType(to: _.self) // expected-error {{type placeholder not allowed here}}
let _: SetFailureType<Int, [String]> = Just<Int>().setFailureType(to: [_].self)
let _: SetFailureType<Int, (String) -> Double> = Just<Int>().setFailureType(to: ((_) -> _).self)
let _: SetFailureType<Int, (String, Double)> = Just<Int>().setFailureType(to: (_, _).self)
// TODO: Better error message here? Would be nice if we could point to the placeholder...
let _: SetFailureType<Int, String> = Just<Int>().setFailureType(to: _.self).setFailureType(to: String.self) // expected-error {{type placeholder not allowed here}} expected-error {{generic parameter 'T' could not be inferred}}
let _: (_) = 0 as Int // expected-error {{placeholder type may not appear as type of a variable}} expected-note {{replace the placeholder with the inferred type 'Int'}} {{9-10=Int}}
let _: Int = 0 as (_) // expected-error {{type placeholder not allowed here}}
let _: Int = 0 as (((((_))))) // expected-error {{type placeholder not allowed here}}
_ = (1...10)
.map {
(
$0,
(
"\($0)",
$0 > 5
)
)
}
.map { (intValue, x: (_, boolValue: _)) in
x.boolValue ? intValue : 0
}
let _: SetFailureType<Int, String> = Just<Int>().setFailureType(to: _.self).setFailureType(to: String.self) // expected-error {{type placeholder not allowed here}} expected-error {{generic parameter 'T' could not be inferred}}
// N.B. The parallel structure of the annotation and inferred default
// initializer types is all wrong. Plus, we do not trust
// the contextual type with placeholders in it so the result is a generic
// diagnostic.
func mismatchedDefault<T>(_ x: [_] = [String: T]()) {} // expected-error {{type placeholder not allowed here}}
func mismatchedReturnTypes() -> _ { // expected-error {{type placeholder may not appear in function return type}}
if true {
return "" // expected-note@-2 {{replace the placeholder with the inferred type 'String'}}
} else {
return 0.5 // expected-note@-4 {{replace the placeholder with the inferred type 'Double'}}
}
}
// FIXME: Opaque result types ought to be treated better than this. But it's
// tricky to know which type is intended in a lot of cases.
@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
func opaque() -> some _ { // expected-error {{type placeholder not allowed here}}
return Just<Int>().setFailureType(to: _.self)
}
enum EnumWithPlaceholders {
case topLevelPlaceholder(x: _) // expected-error {{type placeholder may not appear in top-level parameter}}
case placeholderWithDefault(x: _ = 5) // expected-error {{type placeholder may not appear in top-level parameter}}
// expected-note@-1 {{replace the placeholder with the inferred type 'Int'}}
}
func deferredInit(_ c: Bool) {
let x: _ // expected-error {{type placeholder not allowed here}}
if c {
x = "Hello"
} else {
x = "Goodbye"
}
}
// https://github.com/apple/swift/issues/63130
let _: _ = nil // expected-error{{'nil' requires a contextual type}}
let _: _? = nil // expected-error{{'nil' requires a contextual type}}
// rdar://106621760 - failed to produce a diagnostic when placeholder type appears in editor placeholder
do {
struct X<T> {
init(content: () -> T) {}
}
func test(_: () -> Void) {}
test {
_ = X(content: <#T##() -> _#>) // expected-error {{editor placeholder in source file}}
}
}
|