aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/constexpr-static8.C
blob: 35c3f25c5fbaf1e3f26d69e4fab29e48d431fb6d (plain)
1
2
3
4
5
6
7
// PR c++/50258
// { dg-options "-std=c++0x -pedantic" }

struct Foo {
  static const double d = 3.14; // { dg-warning "constexpr" }
};
const double Foo::d;