Find usages test: Move test data out of code

This commit is contained in:
Alexey Sedunov
2013-08-09 14:44:40 +04:00
parent 341174534a
commit ea7a377bea
37 changed files with 449 additions and 241 deletions
@@ -0,0 +1,9 @@
package client;
import server.O
class Client {
fun fooBar() {
println("foo = " + O.instance$.getFoo())
}
}
@@ -0,0 +1,6 @@
package server;
object <caret>O {
var foo: String = "foo"
}
@@ -0,0 +1,2 @@
Class static member access (7: 28) println("foo = " + O.instance$.getFoo())
Usage in import (3: 15) import server.O