Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memclass21.C
blob: 7ac87a7852bad2946c0b1c478de8c8259085c533 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: <Corey Kosak> kosak@cs.cmu.edu
struct
moo
{
template
<
bool
x
>
struct
cow
{};
template
<
bool
x
>
struct
moo2
{
void
func
(
cow
<x>
&
c
)
{
}
};
};