Inner classes lowering.

This commit is contained in:
Dmitry Petrov
2016-10-18 15:59:33 +03:00
parent f933cf5395
commit 7dce1f438f
16 changed files with 380 additions and 31 deletions
@@ -0,0 +1,5 @@
class Outer {
inner class Inner(val x: Int) {
constructor() : this(0)
}
}