// RUN: %clang_cc1 -fsyntax-only -verify %s // expected-no-diagnostics namespace binary_operator { namespace N { template struct A { static const int y = 0; }; } // namespace N void f(int x) { (void)(x < N::A::y); } } // namespace binary_operator