summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900121_01.C
blob: ea07968c3a372dc65db1c31438e97ab189045f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// g++ 1.36.1 bug 900121_01

// The following file causes g++ 1.36.1 (and 1.36.2) to abort.

// Cfront 2.0 passes this test.

// keywords: abort, incomplete types, reference types, formal parameters

struct s0;              // ERROR - forward declaration

void function (struct s0 &arg1, struct s0 &arg2)
{
  arg1 = arg2;		// ERROR - causes abort
}

int main () { return 0; }