Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic127.C
blob: 2e0d593ac9b0722cb273dd9ba506df3ce8f86668 [
file
] [
log
] [
blame
]
// PR c++/51148
// { dg-do compile { target c++11 } }
template
<
typename
...
Types
>
struct
S
{};
template
<
typename
...
Types
>
struct
T
{
friend
class
S
<
Types
>;
// { dg-error "parameter packs not expanded" }
};
int
main
()
{}