1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
24 lines
335 B
Kotlin
24 lines
335 B
Kotlin
package test
|
|
|
|
class C(val s : String) {
|
|
fun A.a(): String {
|
|
class B {
|
|
val b : String
|
|
get() = this@a.s + this@C.s
|
|
}
|
|
return B().b
|
|
}
|
|
|
|
fun test(a : A) : String {
|
|
return a.a()
|
|
}
|
|
}
|
|
|
|
class A(val s: String) {
|
|
|
|
|
|
}
|
|
|
|
fun box() : String {
|
|
return C("K").test(A("O"))
|
|
} |