858b454138
#KT-11994 In Progress
17 lines
148 B
Kotlin
Vendored
17 lines
148 B
Kotlin
Vendored
// FLOW: OUT
|
|
|
|
class A(<caret>n: Int) {
|
|
val x = n
|
|
|
|
val y: Int
|
|
|
|
init {
|
|
y = n
|
|
|
|
bar(n)
|
|
}
|
|
|
|
fun bar(m: Int) {
|
|
|
|
}
|
|
} |