'symbol' : a symbol of this name already exists in the current scope
You tried to create a namespace alias, but the name you chose already exists.
Example
namespace A { int k; } int i; namespace i = A; // error C2880, i already exists