aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/TwoIntros.java
blob: e9766ad5f8e2d9c15cbf297de64ab62d93ceaa9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import org.aspectj.testing.Tester;

public class TwoIntros {
    public static void main(String[] args) {
        Tester.check(false, "shouldn't compile!");
        
    }
}

class A {
}

aspect Aspect {
    int A.i;

    String A.i;
}