aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ice7.C
blob: 4fa3a831454c8f66d3a41140a11cf52ba6c96bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/57827
// { dg-do compile { target c++11 } }

struct C
{
  constexpr int fun (int x)
  {
    return x + 1;
  }

  int a = 2;
  int b = fun(a);
};

C c;