-
Bug
-
Resolution: Fixed
-
P3
-
repo-valhalla
When Point is a value class, the following should throw NullPointerException.
static Point test() {
Object o = null;
Point p = (Point)o;
return p;
}
static Point test() {
Object o = null;
Point p = (Point)o;
return p;
}