(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-compare2.C
// PR c++/69681
// { dg-do compile { target c++11 } }
// { dg-additional-options "-fdelete-null-pointer-checks" }

void f();
void g();
static_assert(f != g, "");

#if __cpp_constexpr >= 201603L
static_assert([]{} != []{}, "");
#endif