Generating annotations in correct order for methods with synthetic parameters.
#KT-4050 fixed
This commit is contained in:
@@ -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) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user