aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/pmf-3.C
blob: b94cd8ea63827abdfcfd8090238d77d65bde7d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/80485
// { dg-do compile { target c++11 } }
// { dg-options "-fdelete-null-pointer-checks" }

struct dummy {
  void nonnull() {};
  void nonnull2();
};

typedef void (dummy::*safe_bool)();

constexpr safe_bool a = &dummy::nonnull;
constexpr safe_bool b = &dummy::nonnull2;

static_assert( static_cast<bool>( a ), "" );
static_assert( static_cast<bool>( b ), "" );