8 lines
84 B
Plaintext
Raw Normal View History

2017-04-06 12:26:04 +02:00
class CastTest{
void methode(){
Object a;
String b;
a = (Object) b;
}
}