10 lines
269 B
Java
10 lines
269 B
Java
|
//: generics/NonCovariantGenerics.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// {CompileTimeError} (Won't compile)
|
|||
|
import java.util.*;
|
|||
|
|
|||
|
public class NonCovariantGenerics {
|
|||
|
// Compile Error: incompatible types:
|
|||
|
List<Fruit> flist = new ArrayList<Apple>();
|
|||
|
} ///:~
|