'symbol' : ambiguous symbol
The compiler cannot determine which symbol you are referring to.
Example
namespace A { int i; } using namespace A; int i; void z() { ::i++; // ok A::i++; // ok i++; // error C2872, ::i or A::i? }