aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/badarrow.C
blob: e5946fd776834072ab69b3b3b9b1a2d5f9a67506 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

struct S { 
  int i;
} s;

void f()
{
  s->i = 3; // ERROR - base operand
}