1 // PR c++/58888
2 // { dg-do compile { target c++11 } }
3 
4 #include <initializer_list>
5 
6 struct A
7 {
8   static constexpr auto b{1.0};
9 };
10 
11 constexpr decltype(A::b) A::b;
12