summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/cast2.C
blob: 80cf7dc1864b531aa30b95a292f23115c1232cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>

struct A {
};

int main()
{
  A a;
  typedef void (A::*F)();
  F p;

  const_cast<const A>(a); // ERROR - const_cast requires pointer/ref types
  const_cast<F>(p); // ERROR - const_cast requires pointer/ref types
  const_cast<int (*)()>(&main); // ERROR - function type in const_cast
  const_cast<int (&)()>(main); // ERROR - function type in const_cast
}