Files
kotlin-fork/compiler/testData/lineNumber/propertyAccessor.kt
T
2012-08-21 16:31:29 +04:00

7 lines
94 B
Kotlin

class A {
val prop : Int
get() {
return test.lineNumber()
}
}