aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/PR166843.cpp
blob: 5a6223bccc27ed38bc012cdf0d250278ab6029c7 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only %s -verify
namespace a {
template <class b>
void c() {
  ((::c::x)); // expected-error {{'c' is not a class, namespace, or enumeration}}
}
}