Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg22.C
blob: 599061cedb0006bac934b2c95005d91c7955ca15 [
file
] [
log
] [
blame
]
// PR c++/92010
// { dg-do compile { target c++11 } }
template
<
typename
T
=
char
[
3
]>
void
foo
(
const
T t
=
"; "
)
{
}
int
main
()
{
foo
();
}