blob: 354e7bc35bed510cbfc8aa7ecb7bd05cc92074a9 [file] [log] [blame]
// Build don't link:
// GROUPS passed nested-classes
// The bug here is that wer'e getting a message about inner not
// being a basetype itself. I think it's because it's being
// compared as the "inner" we knew about when it was forward-declared,
// versus the "inner" we know about when it *has* been defined.
class temp
{
public:
struct inner;
inner *trump()
{
return (tt);
}
struct inner
{
int ll;
}*tt;
};