forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcall_as_function_protocol.swift
61 lines (53 loc) · 1.27 KB
/
call_as_function_protocol.swift
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
// RUN: %target-typecheck-verify-swift
protocol P0 {
// expected-note @+1 {{protocol requires function 'callAsFunction()' with type '() -> Missing'; do you want to add a stub?}}
func callAsFunction() -> Self
}
func testProtocol(_ x: P0) {
_ = x()
}
func testGeneric<T : P0>(_ x: T) {
_ = x()
}
protocol P1 {
func callAsFunction() -> Self
}
extension P1 {
// expected-note @+1 {{found this candidate}}
func callAsFunction() -> Self {
return self
}
}
protocol P2 {}
extension P2 {
// expected-note @+1 {{found this candidate}}
func callAsFunction(x: Int, y: Int) -> Int {
return x + y
}
}
// expected-error @+1 {{type 'Missing' does not conform to protocol 'P0'}}
struct Missing : P0 {}
struct S0 : P0 {
@discardableResult
func callAsFunction() -> S0 { return self }
}
let s0 = S0()
s0()
struct S1 : P1 {
func callAsFunction() -> S1 { return self }
}
let s1 = S1()
_ = s1()()
struct Conforming : P0 & P1 & P2 {}
let conforming = Conforming()
_ = conforming(x: 1, y: 2)
_ = conforming().callAsFunction(x:y:)(1, 2)
_ = conforming.callAsFunction(x:y:)
_ = conforming.callAsFunction // expected-error {{ambiguous use of 'callAsFunction'}}
protocol P3 {}
extension P3 {
func callAsFunction() -> Self { return self }
}
struct S3 : P3 {}
let s3 = S3()
_ = s3()()