7 lines
86 B
Plaintext
7 lines
86 B
Plaintext
trait Foo {
|
|
fun inc() : Foo
|
|
fun not() : Foo
|
|
}
|
|
fun foo(x: Foo) {
|
|
!x.inc()
|
|
} |