blob: b2df47bfff4cef7f4673d49ce981af4481f28ea8 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
namespace std {
template<typename T> class vector { }; // expected-note{{candidate}}
}
typedef int INT;
typedef float Real;
void test() {
using namespace std;
std::vector<INT> v1;
vector<Real> v2;
v1 = v2; // expected-error{{no viable overloaded '='}}
}