Add test infrastructure to check the tracking lookups

Added simple test to verify infrastructure.
This commit is contained in:
Zalim Bashorov
2015-08-07 15:01:30 +03:00
parent 36f69d9fd6
commit 7e250ab2ca
7 changed files with 133 additions and 21 deletions
@@ -0,0 +1,5 @@
from "$TEST_DIR$/src/main.kt:3:16" by "Array" in PACKAGE scope "foo.bar" in file null
from "$TEST_DIR$/src/main.kt:3:22" by "String" in PACKAGE scope "foo.bar" in file null
from "$TEST_DIR$/src/main.kt:4:12" by "Array" in PACKAGE scope "foo.bar" in file null
from "$TEST_DIR$/src/main.kt:4:18" by "Int" in PACKAGE scope "foo.bar" in file null
from "$TEST_DIR$/src/main.kt:5:12" by "String" in PACKAGE scope "foo.bar" in file null
@@ -0,0 +1,6 @@
package foo.bar
fun main(args: Array<String>) {
val f: Array<Int>
val s: String
}