Files
Andrey Cherkasov 7bf9474dac [java-highlighting] Provide quick-fix for the "Package annotations should be in file package-info.java" error
IDEA-216254

GitOrigin-RevId: 9d8c4074babff861b5702caa09dd320de5d63d72
2022-12-22 15:59:18 +00:00

11 lines
191 B
Java

// "Remove" "true-preview"
package com.example;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target(ElementType.PACKAGE)
@interface Anno {
int value();
}