OnJava8-Examples/generics/UseList.java

9 lines
170 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) {}
2015-05-05 11:20:13 -07:00
} ///:~