aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs166/pr284862/Entity.java
blob: a1dbfa035057418110cc0f3b4ea3ecbb73e94536 (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Entity {

}