JavaPatternMatching/resources/syntaxtreegenerator/javFiles/Instanceof.jav

8 lines
152 B
Plaintext
Raw Normal View History

import java.lang.Integer;
public class Instanceof{
void checkInstanceof() {
var a = 4;
return (a instanceof java.lang.Integer);
}
}