Files
kotlin-fork/idea/testData/slicer/inflow/valParameter.kt
T
Alexey Sedunov 49da81f681 Analyze Data Flow: Support val/var parameters
#KT-11994 In Progress
2017-06-09 17:19:20 +03:00

9 lines
95 B
Kotlin
Vendored

// FLOW: IN
open class A(val <caret>n: Int)
class B : A(1)
fun test() {
val z = A(2).n
}