1 2 3 4 5 6 7 8 9 10 11 12 13
import org.aspectj.testing.*; public class Colon { public static void main(String[] args) { new Colon().realMain(args); } public void realMain(String[] args) { int i = 13: Tester.check(false, "Shouldn't have compiled"); } }