OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [ttp58.C] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 305 jeremybenn
// { dg-do assemble  }
2
// Origin: Alex Samuel 
3
 
4
namespace NS
5
{
6
 
7
template 
8
struct Base
9
{
10
};
11
 
12
template 
13
struct Z
14
{
15
  const static int value_ = false;
16
};
17
 
18
struct Outer
19
{
20
  template 
21
  struct A :
22
    public Base ::value_>
23
  {
24
  };
25
};
26
 
27
template 
28
void f(T)
29
{
30
}
31
 
32
}
33
 
34
 
35
template