OSDN Git Service

add c++/43145 tag to changelog and testcase
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / class-member-2.C
1 template <typename T> struct A
2 {
3   void foo () const {}
4   char A;
5 };
6
7 void bar() { A<void>().foo(); }