forked from JavaTX/JavaCompilerCore
29 lines
363 B
Plaintext
29 lines
363 B
Plaintext
class Instanceof {
|
|
|
|
Instanceof(){
|
|
super(());
|
|
}
|
|
void checkInstanceof(){
|
|
TPH a;
|
|
a = 4;
|
|
return a instanceof java.lang.Integer;
|
|
}
|
|
|
|
void checkInstanceOfWithPattern(){
|
|
TPH b;
|
|
b = 4.0;
|
|
if(b instanceof d)
|
|
{
|
|
return d;
|
|
}
|
|
else
|
|
{
|
|
return Kein Double;
|
|
};
|
|
}
|
|
|
|
Instanceof(){
|
|
super(());
|
|
}
|
|
|
|
} |