JavaTXCompilerInJavaTX/test/parser/CastTest.jav

8 lines
84 B
Plaintext
Raw Normal View History

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