1 // PR c++/46552
2 
3 struct S
4 {
5     int x;
6 };
7 
8 template < typename >
f(void)9 void f( void )
10 {
11     &S::x;
12 }
13