importorg.aspectj.testing.Tester;publicclassProceeding2{publicstaticvoidmain(String[]args){Tester.checkFailed("Proceed with a receiver should be treated as a method call, not the special form");}staticaspectA{voidaround():execution(voidmain(String[])){Proceeding2.proceed(null);// BUG: treated as proceed(Object);}}staticvoidproceed(Objecto){}}