xref: /llvm-project/clang/test/CodeGenCXX/template-static-var-defer.cpp (revision c96b2496fc6bc7efafd1fa1d441f26128e06926f)
1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | not grep define
2 // PR7415
3 class X {
4   template <class Dummy> struct COMTypeInfo {
5     static const int kIID;
6   };
GetIID()7   static const int& GetIID() {return COMTypeInfo<int>::kIID;}
8 };
9 template <class Dummy> const int X::COMTypeInfo<Dummy>::kIID = 10;
10 
11 
12 
13