mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
49 lines
1.9 KiB
Swift
49 lines
1.9 KiB
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
func takeIntToInt(_ f: (Int) -> Int) { }
|
|
func takeIntIntToInt(_ f: (Int, Int) -> Int) { }
|
|
|
|
// Simple closures with anonymous arguments
|
|
func simple() {
|
|
takeIntToInt({return $0 + 1})
|
|
takeIntIntToInt({return $0 + $1 + 1})
|
|
}
|
|
|
|
func takesIntArray(_: [Int]) { }
|
|
func takesVariadicInt(_: (Int...) -> ()) { }
|
|
func takesVariadicIntInt(_: (Int, Int...) -> ()) { }
|
|
|
|
func takesVariadicGeneric<T>(_ f: (T...) -> ()) { }
|
|
|
|
func variadic() {
|
|
// These work
|
|
|
|
// FIXME: Not anymore: rdar://41416758
|
|
takesVariadicInt({let _ = $0})
|
|
// expected-error@-1 {{cannot convert value of type '(_) -> ()' to expected argument type '(Int...) -> ()'}}
|
|
takesVariadicInt({let _: [Int] = $0})
|
|
// expected-error@-1 {{cannot convert value of type '(_) -> ()' to expected argument type '(Int...) -> ()'}}
|
|
|
|
let _: (Int...) -> () = {let _: [Int] = $0}
|
|
// expected-error@-1 {{cannot convert value of type '(_) -> ()' to specified type '(Int...) -> ()'}}
|
|
|
|
// FIXME: Make the rest work
|
|
takesVariadicInt({takesIntArray($0)})
|
|
// expected-error@-1 {{cannot convert value of type '([Int]) -> ()' to expected argument type '(Int...) -> ()'}}
|
|
|
|
let _: (Int...) -> () = {takesIntArray($0)}
|
|
// expected-error@-1 {{cannot convert value of type '([Int]) -> ()' to specified type '(Int...) -> ()'}}
|
|
|
|
takesVariadicGeneric({takesIntArray($0)})
|
|
// expected-error@-1 {{cannot convert value of type '[_]' to expected argument type '[Int]'}}
|
|
|
|
takesVariadicGeneric({let _: [Int] = $0})
|
|
// expected-error@-1 {{cannot convert value of type '(_) -> ()' to expected argument type '(_...) -> ()'}}
|
|
|
|
takesVariadicIntInt({_ = $0; takesIntArray($1)})
|
|
// expected-error@-1 {{cannot convert value of type '(_, _) -> ()' to expected argument type '(Int, Int...) -> ()'}}
|
|
|
|
takesVariadicIntInt({_ = $0; let _: [Int] = $1})
|
|
// expected-error@-1 {{cannot convert value of type '(_, _) -> ()' to expected argument type '(Int, Int...) -> ()'}}
|
|
}
|