// PR c++/2136// Test that overloaded op new and delete don't prevent us from using the// global versions with an explicit scope.#include<stddef.h>structA{void*operatornew(size_t,float);voidoperatordelete(void*,float);};intmain(){A*p=::newA;::deletep;}