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
+11
View File
@@ -0,0 +1,11 @@
enum class Z {
ENTRY {
fun test() {}
class A {
fun test2() {
test()
}
}
}
}