Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr104025.C
blob: 9457c8ef52c2db7bec564c0f86e2e099697f6e38 [
file
] [
log
] [
blame
]
// PR c++/104025
// { dg-do compile }
// { dg-options "-Wmissing-template-keyword -fcompare-debug" }
void
bar
(
int
);
struct
S
{
int
i
;
};
template
<
class
C
>
struct
T
{
int
m
;
C c
;
void
foo
()
{
bar
(
c
.
i
<
m
);
}
};
template
void
T
<
S
>::
foo
();