Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20101009-1_0.C
blob: b7cc5bc478f908e8727572b3843a2ca5ec9912f7 [
file
] [
log
] [
blame
]
// { dg-lto-do link }
template
<
typename
>
struct
X
{
template
<
typename
>
static
int
test
();
static
const
int
i
=
sizeof
(
test
<
int
>());
};
template
struct
X
<
int
>;
int
main
()
{
return
0
;
}