(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
static_assert16.C
// PR c++/82239
// { dg-do compile { target c++11 } }

template<typename T>
struct C {
   static constexpr int x = 5;
   void f()
   {
      static_assert(0 < x, "");
      static_assert(0 < (x), "");
      static_assert(true || (0 < x), "");
      static_assert(true || (0 < (x)), "");
   }
};