7ce62a5b64
A single test file will be generated out of box/ directory
15 lines
195 B
Kotlin
15 lines
195 B
Kotlin
class Test {
|
|
val Int.foo: String = "OK"
|
|
get() {
|
|
val a = $foo
|
|
return "OK"
|
|
}
|
|
|
|
fun test(): String {
|
|
return 1.foo
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Test().test()
|
|
} |