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