OnJava8-Examples/generics/UseList.java

9 lines
191 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: generics/UseList.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
// {CompileTimeError} (Will not compile)
2015-04-20 15:36:01 -07:00
public class UseList<W,T> {
void f(List<T> v) {}
void f(List<W> v) {}
2015-05-05 11:20:13 -07:00
} ///:~