aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/finalfield/User2.java
blob: 6210f2a6bcaeb9b88983d71e60f025a1859bf2dd (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.aspectj.testing.Tester;

public class User2 {
	public static void main(String[] args) {
		switch(Receiver.constant) {
			case 2:
				return;
		}
		Tester.checkFailed("shouldn't get here");
	}
}