summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/copy1.C
blob: 91a84ae3e3cc8a68f5b6488517c92ca5f98cb757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do compile }

class A {
public:
    A(){}
    A( const A& a ){}
};

class B  : public A
{
public:
  B( int& s) : s_(s){}
  int& s_;
};

int main()
{
  int i;
  B x1( i );
  B x2( x1 );
}