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/] [ttp57.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
template 
19
struct A :
20
  public Base ::value_>
21
{
22
};
23
 
24
template 
25
void f(T)
26
{
27
}
28
 
29
}
30
 
31
 
32
template