1// RUN: %clang_cc1 -fsyntax-only %s -verify2namespace a {3template <class b>4void c() {5 ((::c::x)); // expected-error {{'c' is not a class, namespace, or enumeration}}6}7}8