Files
kotlin-fork/backend.native/tests
Ilya Matveev 07c8404a5e backend: Fix enum constructor default parameters
The problem was observed in the follwing code:

enum class A(one: Int, val two: Int = one) ...

The problem is in the `two` default value. Here the enum constructor
lowering used an old (not lowered) symbol for `one`. Also the lowering
didn't copy the default expression for DEFAULT class.
The patch fixes both problems.
2017-06-14 19:42:29 +07:00
..
2017-06-14 10:33:45 +07:00
2017-05-15 15:24:58 +03:00
2016-10-21 20:21:54 +03:00