summaryrefslogtreecommitdiffstats
path: root/src/test/misc/SuperTest.java
blob: 01fc99085b4c38ea88b853b3948746cd71b847ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package test.misc;

import java.util.ArrayList;

public class SuperTest extends ArrayList {

	public SuperTest() {
		super(3);
		super.modCount = 2;
		SuperTest.super.size();
	}
	
	public int size() {
		System.out.println("1");
		return 0;
	}
	
	class SuperTest1 {
		
		public void test() {
			SuperTest.super.size();
			SuperTest.super.modCount = 2;
		}
		
	}
	
}