blob: 4bc8bdfc9a84e81afdca14bde246fe1328cb2cf9 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
namespace std {
template<typename T> class vector { };
}
typedef int INT;
typedef float Real;
void test() {
using namespace std;
std::vector<INT> v1;
vector<Real> v2;
v1 = v2; // expected-error{{incompatible type assigning 'vector<Real>', expected 'std::vector<INT>'}}
}