1 // PR c++/58647 2 3 struct A 4 { 5 static void foo(); 6 }; 7 bar()8 template<typename> void bar() 9 { 10 A().foo; 11 } 12