Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-array3.C
blob: 4140cd92d7b50e36a6984f0471053cd9f1eb1939 [
file
] [
log
] [
blame
]
// PR c++/52743
// { dg-do compile { target c++11 } }
void
composite
(
int
const
(&)
[
2
]);
void
composite
(
int
const
(&)
[
3
]);
int
main
()
{
// Not ambiguous since CWG 1307.
composite
({
0
,
1
});
}