aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171953_2/test/SimpleListFactoryConsumer.java
blob: ab1ec7cf7ba46cd4e85351173fefe82c70a0ad0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test;

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

public class SimpleListFactoryConsumer extends AbstractProcessor {

	public void run() {
		//List<List<String>> list1 = getListFactory().createList();
		List<List<String>> list2 = this.createList();
	}
	
	public static void main(String[] args) {
		new SimpleListFactoryConsumer().run();
	}
}