[analyzer] Refactoring: Drop the 'GR' prefix.
[clang.git] / test / CodeGenCXX / instantiate-init-list.cpp
blob49c6f51c775104dc0857dfc34824540f829efb12
1 // RUN: %clang_cc1 %s -emit-llvm-only -verify
3 struct F {
4 void (*x)();
5 };
6 void G();
7 template<class T> class A {
8 public: A();
9 };
10 template<class T> A<T>::A() {
11 static F f = { G };
13 A<int> a;