// RUN: %clang_cc1 %s -emit-llvm-only -verify // expected-no-diagnostics struct F { void (*x)(); }; void G(); template class A { public: A(); }; template A::A() { static F f = { G }; } A a;