Files
kotlin-fork/compiler/testData/ir/irText/expressions/smoke.kt
T
Dmitry Petrov 5c720845a8 Drop IrPropertyAccessor (and subclasses).
Drop IrLocalPropertyAccessor (and subclasses).
Introduce IrField.
2016-10-18 09:09:15 +03:00

11 lines
247 B
Kotlin
Vendored

fun testFun(): String { return "OK" }
val testSimpleVal = 1
val testValWithGetter: Int get() = 42
var testSimpleVar = 2
var testVarWithAccessors: Int
get() = 42
set(v) {}
// 1 FUN public fun testFun
// 1 PROPERTY public val testSimpleVal