aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net12.C
blob: b5fbf64ddec800be0d65b0d57836e66ece25a1e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Build don't link:
// Special g++ Options: -pedantic-errors

struct Foo {
  char *p;
  const char *q;
  void m() const;
};

void other(char &x);	// ERROR - reference below

void
Foo::m() const
{
    other(*q);		// ERROR - this is bad
}