Teach TreeTransform how to transform a pack expansion type into
[clang.git] / test / CodeGenCXX / static-member-variable-explicit-specialization.cpp
blob94fd9aa12ced248a0e87fbbe16aa4634e8545a4f
1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2 // CHECK: ; ModuleID
3 template<typename> struct A { static int a; };
5 // CHECK-NOT: @_ZN1AIcE1aE
6 template<> int A<char>::a;
8 // CHECK: @_ZN1AIbE1aE = global i32 10
9 template<> int A<bool>::a = 10;