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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [qualttp13.C] - Blame information for rev 696

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// Copyright (C) 2001 Free Software Foundation
2
// Contributed by Kriang Lerdsuwanakij 
3
 
4
template  struct A
5
{
6
        template  struct AA {
7
                template  struct B {
8
                        int i;
9
                        B() : i(1) {}
10
                };
11
        };
12
};
13
 
14
template