aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/ParenKeywords.java
blob: 37fb9553177ece4a62d35b3b697946ef0928ef97 (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 ParenKeywords {
    public static void main(String[] args) {
	if ((false) || (true)) {
	    new ParenKeywords().foo();
	}
        Tester.checkEvents("foo");
    }
    void foo() {
	if ((this) == (null)) {
	    System.err.println("shouldn't happen");
	} else {
            Tester.event("foo");
        }
    }
}