//issue #2752: this test triggers an indirect static access and a non static access warning for the same method call//platform ecj,eclipseclassExtensionMethodNonStaticAccess{publicvoidmethod(){Derivedderived=newDerived();derived.staticMethod();}}classBase{staticStringstaticMethod(){return"";}}classDerivedextendsBase{}