e95d22dcfe
See https://youtrack.jetbrains.com/issue/KT-6886 for more information
16 lines
251 B
Java
Vendored
16 lines
251 B
Java
Vendored
package test;
|
|
|
|
public enum EnumConstructorParameter {
|
|
INSTANCE("instance");
|
|
|
|
public @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
EnumConstructorParameter(@Anno("string") String s) {
|
|
}
|
|
|
|
EnumConstructorParameter(int x) {
|
|
}
|
|
}
|