public class JavacBug { interface ObjectInterface> {} class ObjectImpl implements ObjectInterface {} interface PropertyInteface> {} class PropertyImpl implements PropertyInteface {} , P extends PropertyInteface> void testMethod(P prorety) { if (prorety instanceof PropertyImpl) {} //cause the java.lang.StackOverflowError } }