OnJava8-Examples/generics/UseList.java

8 lines
169 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: generics/UseList.java
// {CompileTimeError} (Will not compile)
2015-04-20 15:36:01 -07:00
import java.util.*;
public class UseList<W,T> {
void f(List<T> v) {}
void f(List<W> v) {}
} ///:~