1 // PR c++/61242
2 // { dg-do compile { target c++11 } }
3 
4 struct Foo
5 {
6   struct A
7   {
8     const int &container;
9     const int &args;
10   };
11   static void Create (const A &);
12 };
13 
main()14 int main ()
15 {
16   Foo::Create ({{}, {}});
17 }
18