Skip to main content
summaryrefslogtreecommitdiffstats
blob: f0fe986bcf2db8745fd8ad60303d73e2e9727a7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package wiki_out;

public class A_test2001 {

	int field= 0;

	void fun() {
		int i;
		extracted();
	}

	protected void extracted() {
		int i;
		/*[*/
		i= 0;
		System.out.println("i, field == " + i++ +", " + field);
		/*]*/
	}
}

Back to the top