13 lines
179 B
Kotlin
Vendored
13 lines
179 B
Kotlin
Vendored
val testExternal
|
|
|
|
class Some(testParam : Int) {
|
|
private val myVal : Int
|
|
|
|
init {
|
|
val testing = 12
|
|
myVal = test<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: testParam, testExternal, testing
|