Files
kotlin/compiler/testData/codegen/properties/propertyReceiverOnStack.kt
2013-01-24 21:12:27 +04:00

7 lines
102 B
Kotlin

class Evaluator(val expr: StringBuilder) {
fun evaluateArg(): Int {
return expr.length()
}
}