7 lines
95 B
Kotlin
7 lines
95 B
Kotlin
trait Foo {
|
|
fun inc() : Foo
|
|
fun not() : Foo
|
|
}
|
|
fun foo(x: Foo) {
|
|
!(<caret>x.inc())
|
|
} |