Java: fix false positive on reference to enum constant (IDEA-357156)

GitOrigin-RevId: 7c833e46823ab41c9bdf275308ccee226d7e1a5f
This commit is contained in:
Bas Leijdekkers
2024-08-05 16:51:32 +02:00
committed by intellij-monorepo-bot
parent 5c96c794ed
commit 24aaef624d
2 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
// "Fix all 'Constant expression can be evaluated' problems in file" "false"
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(Retention<caret>Policy.RUNTIME)
@interface Ann {}