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;
};