forked from JavaTX/JavaCompilerCore
8 lines
152 B
Plaintext
8 lines
152 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Instanceof{
|
||
|
void checkInstanceof() {
|
||
|
var a = 4;
|
||
|
return (a instanceof java.lang.Integer);
|
||
|
}
|
||
|
}
|