a7b6b34e29
Classes like Int and jet.Iterable should are not visible from Java since they are erased at runtime. We call such classes non-physical, they have to be added to completion manually.`
9 lines
169 B
Kotlin
9 lines
169 B
Kotlin
class Test {
|
|
fun test() {
|
|
val some : <caret>
|
|
}
|
|
}
|
|
|
|
// RUNTIME: 1
|
|
// EXIST: Any, Nothing, Tuple0, Int, Number
|
|
// EXIST: Array, Math, Hashable, OutputStream |