Refactor ReflectJavaConstructor.getValueParameters()
See https://youtrack.jetbrains.com/issue/KT-6886 for more information
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package test;
|
||||
|
||||
public enum EnumConstructorParameter {
|
||||
INSTANCE("instance");
|
||||
|
||||
public @interface Anno {
|
||||
String value();
|
||||
}
|
||||
|
||||
EnumConstructorParameter(@Anno("string") String s) {
|
||||
}
|
||||
|
||||
EnumConstructorParameter(int x) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user