1 // This source code must be compiled on a ppc64 machine!!
2 // The compilation command must be:
3 //
4 // g++ -g -Wall -O2 -shared -o libtest36-ppc64-aliases-v1.so test36-ppc64-aliases-v1.cc
5 
6 struct S
7 {
8   S();
9   S(int);
10   ~S();
11   int m0;
12   int m1;
13 };
14 
S()15 S::S()
16   : m0()
17 {}
18 
S(int s)19 S::S(int s)
20   : m0(s), m1(s)
21 {}
22 
~S()23 S::~S()
24 {}
25 
26 void
foo(S &)27 foo(S&)
28 {}
29