Sign in
android
/
platform
/
tools
/
idea
/
c667c1f74abd96a2098520effdd5afdff7f0d34b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
genericsHighlighting
/
ImplementAnnotation.java
blob: 8650d6b815e67d3f918dd1ce9f6eb8a85a4bdc4e [
file
]
import
java
.
lang
.
annotation
.
Annotation
;
@interface
Foo
{
String
id
();
}
class
Bar
implements
Foo
{
public
String
id
()
{
return
null
;
}
public
Class
<?
extends
Annotation
>
annotationType
()
{
return
null
;
}
}