12 lines
180 B
Text
12 lines
180 B
Text
|
/* testing invalid casts */
|
||
|
class Main
|
||
|
{
|
||
|
void main()
|
||
|
{
|
||
|
int a;
|
||
|
Object d;
|
||
|
d = new Object();
|
||
|
a = (Object) d;
|
||
|
a = (boolean[]) a;
|
||
|
}
|
||
|
}
|