Move class completion tests into ordinal tests

This commit is contained in:
Nikolay Krasko
2013-04-08 18:18:03 +04:00
parent 8ee8ddd997
commit aeff3c783e
5 changed files with 24 additions and 49 deletions
@@ -0,0 +1,9 @@
class Test {
fun test() {
val some : <caret>
}
}
// EXIST: Any, Nothing, Unit, Int, Number
// EXIST: Array, Hashable
// EXIST_JAVA_ONLY: Math, Thread
@@ -0,0 +1,8 @@
class Test : <caret> {
fun test() {
}
}
// EXIST: Any, Nothing, Unit, Int, Number
// EXIST: Array, Hashable
// EXIST_JAVA_ONLY: Math, Thread