aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/torture/pr37354.C
blob: acdf29110638d387539d3ac8bb0038edeaaeb0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */

class GenericClass;
struct AlsaDriver
{
  virtual int _read (unsigned nframes);
};
typedef void (GenericClass::*GenericMemFuncType) ();
GenericMemFuncType m_pFunction;
void AlsaDriver1 ()
{
  m_pFunction = reinterpret_cast < GenericMemFuncType > (&AlsaDriver::_read);
}