OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [qualttp13.C] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// Copyright (C) 2001 Free Software Foundation
// Copyright (C) 2001 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij 
// Contributed by Kriang Lerdsuwanakij 
template  struct A
template  struct A
{
{
        template  struct AA {
        template  struct AA {
                template  struct B {
                template  struct B {
                        int i;
                        int i;
                        B() : i(1) {}
                        B() : i(1) {}
                };
                };
        };
        };
};
};
template