aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/NoMethodName.java
blob: c2eefd990e51ece08318c59da2c30e960190c673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.testing.*;

public class NoMethodName {
    public static void main(String[] args) {
        new NoMethodName().realMain(args);
    }
    
    public void realMain(String[] args) {
        System.out.();
        Tester.check(false, "Shouldn't have compiled");
    }
}