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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [ttp58.C] - Blame information for rev 699

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 699 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