Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
new3.C
blob: c388acf552e7165c0560b1b040a064ad0029ef19 [
file
] [
log
] [
blame
]
// PR c++/85847
// { dg-do compile { target c++11 } }
template
<class>
int
f
(
int
b
)
{
return
b
;
}
template
<class>
void
g
()
{
auto
a
=
new
int
[
f
<int>
(
2
),
2
];
}