|
Relates :
|
This program doesn't compile:
interface MyInterface<V> { }
class MyImpl implements MyInterface {
MyInterface<Integer> o1 = (MyInterface<Integer>) (MyImpl)null;
MyImpl o2 = (MyImpl) (MyInterface<Integer>)null;
}
|