Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template2.C
blob: cb1d674ea825d7155cc412751ce2391f3683ea7c [
file
] [
log
] [
blame
]
// { dg-do assemble }
// GROUPS passed templates
template
<
class
Q
>
class
Conc
{
public
:
static
int
body
();
};
template
<
class
Q
>
int
Conc
<
Q
>::
body
()
{
return
0
;}
int
main
()
{
Conc
<int>
s2
;
}