d1409116f3
- Disable class level keywords from method parameters list - Reorganize completion tests to separate methods
19 lines
233 B
Kotlin
19 lines
233 B
Kotlin
package testing
|
|
|
|
fun testTop() {
|
|
|
|
}
|
|
|
|
class TestSample() {
|
|
fun main(args : Array<String>) {
|
|
val testVar = ""
|
|
test<caret>.testFun()
|
|
}
|
|
|
|
fun testFun() {
|
|
|
|
}
|
|
}
|
|
|
|
// TIME: 2
|
|
// EXIST: testVar, testFun, testTop |