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
/
initlist-array3.C
blob
4140cd92d7b50e36a6984f0471053cd9f1eb1939
1
// PR c++/52743
2
// { dg-do compile { target c++11 } }
3
4
void composite (int const (&) [2]);
5
void composite (int const (&) [3]);
6
7
int main ()
8
{
9
// Not ambiguous since CWG 1307.
10
composite({0,1});
11
}