Files
kotlin-fork/j2k/tests/testData/ast/thisExpression/classAdotThisFoo.ide.kt
T
Pavel V. Talanov 741e031ff1 Converter:
Use formatter in converter tests
Reformat test data
2013-12-22 16:46:51 +04:00

11 lines
139 B
Kotlin

class Base() {
fun foo() {
}
}
class A() : Base() {
class C() {
fun test() {
this@A.foo()
}
}
}