repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist84.C
blob
4d46746c52fd40d299e3b4f32bb3d93a4edfdff6
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
14
int main ()
15
{
16
Foo::Create ({{}, {}});
17
}