Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup18.C
blob: 38f7347ef5158a37185d783d0c93135d821db819 [
file
] [
log
] [
blame
]
// PR c++/93614
template
<
class
T
>
class
foo
{};
template
<
class
T
>
class
template_class_with_struct
{
void
my_method
()
{
if
(
this
->
b
.
foo
<
1
);
};
struct
bar
{
long
foo
;
}
b
;
};