// RUN: clang-cc -fsyntax-only -verify %s namespace std { template class vector { }; } typedef int INT; typedef float Real; void test() { using namespace std; std::vector v1; vector v2; v1 = v2; // expected-error{{incompatible type assigning 'vector', expected 'std::vector'}} }