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
|
2015-04-29 13:56:17 -07:00
|
|
|
|
// {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
|
|
|
|
} ///:~
|