Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0b510c2e7e379820465d6879c060bc6f1757acb7 (plain) (blame)
1
2
3
4
5
6
7
import java.util.List;

public class A_testParametricTypeWithNonParametricSuperType_in {
	void foo(){
		List<String> x = null;
	}
}

Back to the top