aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns7.C
blob: 9afc97c410f4b27ff279677549fddb7ac3daa9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Build don't link: 
namespace A{
 struct X{
   int i;
   X(){}
   X(int j);
   void operator=(const X&);
   virtual ~X(){}
 };
 void X::operator=(const X&o)
 {
   i=o.i;
 }
}

A::X::X(int j):i(j){}

namespace A{
  struct Y:public X{
    int j;
    Y(int,int);
  };
}

A::Y::Y(int a,int b):X(a),j(b)
{}