11 lines
98 B
Plaintext
Vendored
11 lines
98 B
Plaintext
Vendored
protocol Protocol {
|
|
func f1()
|
|
func f2()
|
|
}
|
|
|
|
class MyClass {
|
|
func f() {
|
|
return true
|
|
}
|
|
}
|