aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/static_assert7.C
blob: f571de28af4fccf8b118fc88c9f94327d39350e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/53166
// { dg-do compile { target c++11 } }
// { dg-options "-Waddress" }

template <typename X, X a>
struct A
{
  static_assert (a != nullptr, "oops");
  static_assert (nullptr != a, "oops");

  int f()
  {
    static_assert (a != nullptr, "oops");
    static_assert (nullptr != a, "oops");
    return 1;
  }
};

int i1;
A<int*, &i1> a1;
int i2 = a1.f();