Files
Bas Leijdekkers 38649ac539 Java: create dependent constant from usage in interface correctly (IDEA-337008)
GitOrigin-RevId: 3afbc697d94e692278ea74fe73fa3bc8982e50af
2023-11-06 11:17:04 +00:00

5 lines
153 B
Java

// "Create constant field 'SOME_REGEXP'" "true-preview"
interface IntroduceConstant {
String SOME_REGEXP = ;
String SOME_PATTERN = SOME_REGEXP;
}