Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / synth6.C
blob01485282e8918d299c0f23618e33728b03756edb
1 // { dg-do assemble  }
2 // Bug: g++ tries to generate an op= for DbmItem and fails.
4 class RefCount{
5 public:
6   RefCount();
8 private:
9   RefCount& operator=(const RefCount);
12 class DbmItem: public RefCount{
13 public:
14   DbmItem(): RefCount() {}