summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/cast2.C
blob: 7e99ead65e1613e89b84395c69280fc82a6aac37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

struct A {
};

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

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