Files
kotlin/compiler/testData/codegen/properties/propertyReceiverOnStack.kt
2015-10-14 20:39:35 +03:00

7 lines
100 B
Kotlin
Vendored

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