Do not produce error classes for not found annotations
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
public interface A {
|
||||
@interface Anno {
|
||||
String value();
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
@A.Anno("B")
|
||||
public interface B {
|
||||
@A.Anno("foo")
|
||||
<T> T foo(T t);
|
||||
}
|
||||
Reference in New Issue
Block a user