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

// PR#213

public class MismatchedParens {

    public static void main(String[] args) { test(); }

    public static void test() {
        org.aspectj.testing.Tester.check(true, ""); 
    }
}

aspect A {
    /*static*/ before(): foocut(
}