2015-04-20 15:36:01 -07:00
|
|
|
//: generics/NonCovariantGenerics.java
|
|
|
|
// {CompileTimeError} (Won't compile)
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class NonCovariantGenerics {
|
|
|
|
// Compile Error: incompatible types:
|
2015-05-05 11:20:13 -07:00
|
|
|
List<Fruit> flist = new ArrayList<>();
|
2015-04-20 15:36:01 -07:00
|
|
|
} ///:~
|