summaryrefslogtreecommitdiffstats
path: root/src/test/misc/ParentFieldTest.java
blob: caccc2a2ca078acd537b9743e49d79a7ce7e6359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package test.misc;

public class ParentFieldTest {

	public int test = 0;
	
	private class Parent extends ParentFieldTest {

		private class Child {
			
			public void test() {
				System.out.println(ParentFieldTest.this.test);
			}
			
		}
		
	}
	
}