Properly lower ImplicitClassReceiver

This commit is contained in:
Michael Bogdanov
2016-10-13 10:21:14 +03:00
committed by Dmitry Petrov
parent a93f929615
commit 20c4f47253
8 changed files with 133 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
object Z {
fun test() {}
class A {
fun test2() {
test()
}
}
}