forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotocols.swift
43 lines (37 loc) · 954 Bytes
/
protocols.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
// RUN: %target-run-simple-swift | FileCheck %s
// REQUIRES: executable_test
protocol RollCallable {
func rollCall() -> String
}
protocol Snarker {
func snark() -> String
}
struct Cambot : RollCallable {
func rollCall() -> String { return "Cambot!" }
}
struct Gypsy : RollCallable {
func rollCall() -> String { return "Gypsy!" }
}
struct TomServo : RollCallable {
func rollCall() -> String { return "Tom Servo!" }
}
struct Crow : RollCallable, Snarker {
func rollCall() -> String { return "Croooow!" }
func snark() -> String { return "That's one O!" }
}
func printRollCall(x: RollCallable) {
print(x.rollCall())
}
func printRollCallWithSnark(x: protocol<RollCallable, Snarker>) {
printRollCall(x)
print("(\(x.snark()))")
}
// CHECK: Cambot!
printRollCall(Cambot())
// CHECK: Gypsy!
printRollCall(Gypsy())
// CHECK: Tom Servo!
printRollCall(TomServo())
// CHECK: Croooow!
// CHECK: (That's one O!)
printRollCallWithSnark(Crow())