aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/dossier1.C
blob: 2977f156ecfc05aa9b088eba60ff767ef53bec9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Build don't link: 
// Special g++ Options: -frtti
// GROUPS passed rtti
// dossier file
// Message-Id: <9212021501.AA02484@olympia.miro.com>
// From: rme@miro.com (Richard M. Emberson)
// Subject: bug
// Date: Wed, 2 Dec 92 07:01:30 PST

class Vector {
  int *p;
  int sz;
public:
  Vector(int );
  ~Vector();

  int& operator[](int i);
};