Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / diagnostic / constexpr2.C
blob7afb5a23bdffdd1fb2b9084edd83be4448950ac1
1 // { dg-do compile { target c++11 } }
3 extern constexpr int i __attribute__((unused));  // { dg-error "22:declaration of .constexpr. variable .i." }
5 struct S
7   constexpr static int i __attribute__((unused));  // { dg-error "24:.constexpr. static data member .i." }
8 };