class-member-2.C   [plain text]


template <typename T> struct A
{
  void foo () const {}
  char A;
};

void bar() { A<void>().foo(); }