7 lines
108 B
Plaintext
Vendored
7 lines
108 B
Plaintext
Vendored
interface Foo {
|
|
operator fun inc() : Foo
|
|
operator fun not() : Foo
|
|
}
|
|
fun foo(x: Foo) {
|
|
!x.inc()
|
|
} |