aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/refs1.C
blob: f0b7f118a0f4317da425729129763953aead4d72 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// GROUPS passed references
// (Message bugs/refs:1)
// From: tal@vlsi.cs.caltech.edu
// Date:     Fri, 25 Feb 94 23:55:50 -0800
// Subject:  g++-2.5.8 produces incorrect code for references
// Message-ID: <9402260755.AA27693@vlsi.cs.caltech.edu>

#include <stdio.h>

class C {
private:
   char** list;
public:
   C(char** );
   void count (int&);
};

C::C (char** l) {
   list = l;
}

void C::count (int& total) {
   if (*list == NULL)
      return;
   else {
      list++;
      count (++total); // THIS IS WHERE THE TROUBLE STARTS
   }
}

char * foo[] = {
   "one", "two", "three", NULL};

main() {
   C c(foo);
   int i = 0;
   c.count(i);
   if (i == 3)
     printf ("PASS\n");
   else
     printf ("FAIL\n");
}