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

import java.util.AbstractList;
import java.util.ArrayList;
import java.util.List;

class A {
	void foo() {
		AbstractList<String> l= new ArrayList<String>();
		List<String> list= l;
		list.add("Eclipse");
	}
}

Back to the top