blob: 4fa3a831454c8f66d3a41140a11cf52ba6c96bc3 [file] [log] [blame]
// 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;