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

class Bug {
	{
		int y=4;
		/*]*/foo(y);/*[*/
	}
	void foo(final int x){
		new Runnable(){
			public void run(){
				System.out.println(x);
			}};
	}
}

Back to the top