Cast Test

This commit is contained in:
JanUlrich 2017-04-06 12:26:04 +02:00
parent 561f1d1150
commit c02a3480e8

8
test/parser/CastTest.jav Normal file
View File

@ -0,0 +1,8 @@
class CastTest{
void methode(){
Object a;
String b;
a = (Object) b;
}
}