blob: 49c6f51c775104dc0857dfc34824540f829efb12 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify
Eli Friedmanbb4a33c2009-11-09 03:59:26 +00002
3struct F {
4 void (*x)();
5};
6void G();
7template<class T> class A {
John McCall7002f4c2010-04-09 19:03:51 +00008public: A();
Eli Friedmanbb4a33c2009-11-09 03:59:26 +00009};
10template<class T> A<T>::A() {
11 static F f = { G };
12}
13A<int> a;