summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/BadContinueTarget.java
blob: 7d3ebebb0ac089f1b95a31095a89411ca2d84bbc (plain)
1
2
3
4
5
6
7
8
9
public class BadContinueTarget {

    public static void main(String[] args) {
        int i;
    test: {
	    continue test;
    }
    }
}