// Works, Double meets the spec for the type parameterinterfaceI<TextendsNumber>{}publicclassBasic4{publicstaticvoidmain(String[]argv){Basic4b4=newBasic4();if(!(b4instanceofI))thrownewRuntimeException("Should be instanceof I!");}}aspectX{declareparents:Basic4implementsI<Double>;}