| Other |
|---|
| tbdResolved |
|
Relates :
|
The following should compie:
@interface Annot {
String str();
}
public class Test {
final String CONST_STR="something";
@Annot( str = CONST_STR )
static class Foo {}
@Annot( str = CONST_STR )
static void f(){}
}
|