x32: Update gcc.target/i386/builtin_thread_pointer.c
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto-96647.C
1 // PR c++/96647
2 // { dg-do compile { target c++11 } }
3
4 template<typename>
5 struct Base {
6 auto f(int) { }
7 auto f(char) { }
8 };
9
10 void (Base<void>::*ptr)(int) = &Base<void>::f;