Minor: move callable reference IR tests to a separate directory

This commit is contained in:
Dmitry Petrov
2020-01-21 13:26:12 +03:00
parent c5f14a29a4
commit 38b90b7fbd
17 changed files with 86 additions and 60 deletions
@@ -0,0 +1,14 @@
package test
import test.Foo.a
import test.Foo.foo
object Foo {
val a: String = ""
fun foo(): String = ""
}
val test1 = ::a
val test1a = Foo::a
val test2 = ::foo
val test2a = Foo::foo