Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
ref-qual11.C
blob: 15dd049f22ac7a75ae2c72fcf32099336b64bf30 [
file
] [
log
] [
blame
]
// PR c++/57253
// { dg-require-effective-target c++11 }
template
<
typename
T
>
struct
foo
;
template
<>
struct
foo
<
void
()&>
{};
template
<>
struct
foo
<
void
()>
{};
int
main
()
{}