Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
using-declaration causes a multiple declaration of 'symbol'
The declaration causes the same item to be defined twice.
The following sample generates C2874:
// C2874.cpp
namespace Z {
int i;
}
int main() {
int i;
using Z::i; // C2874, i already declared
}