aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net11.C
blob: 2030796a126bb352e7935fef29dd4fed09bd656f (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);

void
Foo::m() const
{
    other(*p);		// this is legal
}