aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/annoRemoval/base/a/Code.java
blob: f776facf45e437c245df4415651346393975492b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package a;
import java.lang.annotation.*;

aspect Remover{
  declare @field: int Code.i: -@Anno;
  declare @field: int Code.j: @Anno;
}

public class Code {

  @Anno
  public int i;

  public int j;
}

@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}