summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/qualified-names-diag.cpp
blob: c875332905fb321fbd9abba14e15947ed7b0f7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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{{no viable overloaded '='}}
}
OpenPOWER on IntegriCloud