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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [inherit/] [multiple1.C] - Blame information for rev 149

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

Line No. Rev Author Line
1 149 jeremybenn
// { dg-options "-w" }
2
 
3
struct Base {
4
  int b;
5
 
6
  Base(int b) : b(b) { }
7
};
8
 
9
struct Derived : public Base {
10
  Derived(int d) : Base(d) { }
11
};
12
 
13
struct Final : public Derived, public Base {
14
  Final(int f) : Derived(f), Base(f-1) { }
15
};
16
 
17
int main()
18
{
19
  Final f(5);
20
}

powered by: WebSVN 2.1.0

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