aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr278255/base/src/A.java
blob: 2e6bb4f1c7fa86b8deffa9d95ac927ff11dc410d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.lang.annotation.*;

public class A {
}

aspect X {
  declare @type: A: @Foo;
  declare parents: A implements java.io.Serializable;
//  declare @type: A: @Foo;
//  declare @type: A: @Foo;
  declare parents: A implements java.io.Serializable;
}

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