[comp.os.minix] minix/ST cc BUG

katzung@laidbak.UUCP (Brian Katzung) (11/09/88)

Another bug...

	struct { int m; } sa[1];
	sa->m = 0;			/* Compiler chokes on this */
	(&(*sa))->m = 1;		/* But this works */

The compiler complains about applying -> to an array.  I haven't
tested unions, but I assume that they would fail the same way.

  -- Brian Katzung  laidbak!katzung