Files
kotlin-fork/idea/testData/slicer/outflow/primaryConstructorCalls.kt
T
Alexey Sedunov 858b454138 Analyze Data Flow: Initial implementation
#KT-11994 In Progress
2017-06-09 17:19:15 +03:00

15 lines
168 B
Kotlin
Vendored

// FLOW: OUT
open class A<caret>(n: Int) {
constructor() : this(1)
}
class B : A(1)
class C : A {
constructor() : super(1)
}
fun test() {
val x = A(1)
}