Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2bb989d97c14014057ba1a3dd8be80077cb0b9dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package invalid;

public class TestInterruptedStatement {
	public void main() {
		/*]*/foo();/*[*/
	}
	
	public void foo() {
		if (true) {
			System.out.println("Eclipse");
			return;
		}	
	}
}

Back to the top