Generating annotations in correct order for methods with synthetic parameters.

#KT-4050 fixed
This commit is contained in:
Evgeny Gerashchenko
2013-10-08 00:18:03 +04:00
parent e401be7ee6
commit 9c38716829
7 changed files with 311 additions and 233 deletions
@@ -0,0 +1,7 @@
package test;
public class kt4050 {
public static void main(String[] args) {
MyEnum.ENTRY.getOrd();
}
}
@@ -0,0 +1,9 @@
package test
enum class MyEnum(deprecated("") val ord: Int) {
ENTRY: MyEnum(239)
fun f(Deprecated p: Int) {
}
}