mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
65 lines
2.9 KiB
Swift
65 lines
2.9 KiB
Swift
// RUN: %target-swift-frontend -parse -verify -module-name main %s
|
|
func global() -> Int { return 0 }
|
|
|
|
struct S {
|
|
static func staticMethod() -> Int { return 0 }
|
|
}
|
|
|
|
class C {
|
|
static func staticMethod() -> Int { return 0 }
|
|
class func classMethod() -> Int { return 0 }
|
|
}
|
|
|
|
if true {
|
|
var x = 0
|
|
func local() -> Int { return 0 }
|
|
func localWithContext() -> Int { return x }
|
|
|
|
let a: @convention(c) () -> Int = global
|
|
let a2: @convention(c) () -> Int = main.global
|
|
let b: @convention(c) () -> Int = { 0 }
|
|
let c: @convention(c) () -> Int = local
|
|
|
|
// Can't convert a closure with context to a C function pointer
|
|
let d: @convention(c) () -> Int = { x } // expected-error{{cannot be formed from a closure that captures context}}
|
|
let d2: @convention(c) () -> Int = { [x] in x } // expected-error{{cannot be formed from a closure that captures context}}
|
|
let e: @convention(c) () -> Int = localWithContext // expected-error{{cannot be formed from a local function that captures context}}
|
|
|
|
// Can't convert a closure value to a C function pointer
|
|
let global2 = global
|
|
let f: @convention(c) () -> Int = global2 // expected-error{{can only be formed from a reference to a 'func' or a literal closure}}
|
|
let globalBlock: @convention(block) () -> Int = global
|
|
let g: @convention(c) () -> Int = globalBlock // expected-error{{can only be formed from a reference to a 'func' or a literal closure}}
|
|
|
|
// Can convert a function pointer to a block or closure, or assign to another
|
|
// C function pointer
|
|
let h: @convention(c) () -> Int = a
|
|
let i: @convention(block) () -> Int = a
|
|
let j: () -> Int = a
|
|
|
|
// Can't convert a C function pointer from a method.
|
|
// TODO: Could handle static methods.
|
|
let k: @convention(c) () -> Int = S.staticMethod // expected-error{{}}
|
|
let m: @convention(c) () -> Int = C.staticMethod // expected-error{{}}
|
|
let n: @convention(c) () -> Int = C.classMethod // expected-error{{}}
|
|
|
|
// <rdar://problem/22181714> Crash when typing "signal"
|
|
let iuo_global: (() -> Int)! = global
|
|
let p: (@convention(c) () -> Int)! = iuo_global // expected-error{{a C function pointer can only be formed from a reference to a 'func' or a literal closure}}
|
|
|
|
func handler(callback: (@convention(c) () -> Int)!) {}
|
|
handler(iuo_global) // expected-error{{a C function pointer can only be formed from a reference to a 'func' or a literal closure}}
|
|
}
|
|
|
|
class Generic<X : C> {
|
|
func f<Y : C>(y: Y) {
|
|
let _: @convention(c) () -> Int = { return 0 }
|
|
let _: @convention(c) () -> Int = { return X.staticMethod() } // expected-error{{cannot be formed from a closure that captures generic parameters}}
|
|
let _: @convention(c) () -> Int = { return Y.staticMethod() } // expected-error{{cannot be formed from a closure that captures generic parameters}}
|
|
}
|
|
}
|
|
|
|
func genericFunc<T>(t: T) -> T { return t }
|
|
|
|
let f: @convention(c) Int -> Int = genericFunc // expected-error{{cannot be formed from a reference to a generic function}}
|