Browse Source

328840

tags/V1_6_11M1
aclement 13 years ago
parent
commit
9c8d91a035
1 changed files with 33 additions and 0 deletions
  1. 33
    0
      tests/bugs1611/pr328840/Wibble.aj

+ 33
- 0
tests/bugs1611/pr328840/Wibble.aj View File

@@ -0,0 +1,33 @@
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;


public aspect Wibble {

declare @field: (@III *) Song.*: @Foo;
before(): get((@III *) Song.*) {
System.out.println();
}
public static void main(String []argv) throws Exception {
System.out.println(Song.class.getDeclaredField("i").getAnnotation(Foo.class));
}
}

@III
class XX {
}
class Song {

XX i;
void foo() {
System.out.println(i);
}
}

@Retention(RetentionPolicy.RUNTIME)
@interface III {}
@Retention(RetentionPolicy.RUNTIME)
@interface Foo {}

Loading…
Cancel
Save