1// PR c++/28148
2
3struct foo {
4public:
5  virtual int bar(int);
6};
7
8void (foo::*__Virtual__foo__Var1)() = (void (foo::*)())(&foo::bar);
9