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

template<class T>
struct z
{
  static constexpr bool test_constexpr()
  {
    return true;
  }

  static void test()
  {
    static_assert(test_constexpr(), "test1");
  }
};

int main()
{
  z<int>::test();
}