Files
kotlin-fork/backend.native/tests/codegen
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-01-23 16:56:44 +07:00
2016-12-23 11:40:31 +07:00
2017-03-29 15:58:36 +03:00