Unwrap property imported from object on property access

#KT-18982 Fixed Target versions 1.1.5
This commit is contained in:
Dmitry Petrov
2017-07-28 10:12:29 +03:00
parent 05919244bd
commit 9e6b706a03
6 changed files with 38 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
import Foo.bar0 as bar
object Foo {
val bar0 = "OK"
fun test() = bar0
}
fun box() = Foo.test()