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