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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [template/] [access1.C] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 301 jeremybenn
// { dg-do compile }
2
 
3
// Copyright (C) 2001 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 19 Jan 2002 
5
 
6
// It is legal to specialize a template with a different class-key.
7
 
8
template class X;
9
 
10
template struct X
11
{
12
  int i;
13
};
14
template<> struct X
15
{
16
  int i;
17
};
18
 
19
void foo ()
20
{
21
  X xip;
22
  X xi;
23
 
24
  xip.i;
25
  xi.i;
26
}
27
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.