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,7 @@
class A<T> {
fun foo() {}
val bar = 42
}
val test1 = A<String>::foo
val test2 = A<String>::bar