bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
153 B
Kotlin
Vendored
12 lines
153 B
Kotlin
Vendored
class Expr {}
|
|
class Num : Expr() {
|
|
fun testing() {}
|
|
}
|
|
|
|
fun eval(e : Expr) {
|
|
if (e is Num) {
|
|
return e.<caret>()
|
|
}
|
|
}
|
|
|
|
// EXIST: testing |