1 template <typename T> struct A
2 {
fooA3   void foo () const {}
4   char A;
5 };
6 
bar()7 void bar() { A<void>().foo(); }
8