mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
14 lines
487 B
Java
14 lines
487 B
Java
// "Replace with 'FontType.PLAIN'" "true-preview"
|
|
import org.intellij.lang.annotations.MagicConstant;
|
|
|
|
class D {
|
|
static class FontType {
|
|
public static final int PLAIN = 0;
|
|
public static final int BOLD = 1;
|
|
public static final int ITALIC = 2;
|
|
}
|
|
void font(@MagicConstant(flags = {FontType.PLAIN, FontType.BOLD, FontType.ITALIC}) int x) {
|
|
// 0 is not allowed despite the fact that it's flags parameter
|
|
font(<caret>FontType.PLAIN);
|
|
}
|
|
} |