aclement преди 13 години
родител
ревизия
9c8d91a035
променени са 1 файла, в които са добавени 33 реда и са изтрити 0 реда
  1. 33
    0
      tests/bugs1611/pr328840/Wibble.aj

+ 33
- 0
tests/bugs1611/pr328840/Wibble.aj Целия файл

@@ -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…
Отказ
Запис