brintos

brintos / llvm-project-archived public Read only

0
0
Text · 281 B · f0ef775 Raw
12 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4namespace binary_operator {5  namespace N {6    template <class> struct A {7      static const int y = 0;8    };9  } // namespace N10  void f(int x) { (void)(x < N::A<int>::y); }11} // namespace binary_operator12