12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
fun test() {
|
|
class Test{
|
|
fun contains(fn: () -> Boolean) : Boolean = true
|
|
}
|
|
val test = Test()
|
|
if (true) {
|
|
{
|
|
true
|
|
} in test
|
|
}
|
|
}
|