Using _MSC_VER there was wrong, better just use the already existing ifdefs for
[oota-llvm.git] / test / FrontendC++ / 2009-06-16-DebugInfoCrash.cpp
1 // RUN: %llvmgxx -c -emit-llvm %s -o /dev/null -g
2 // This crashes if we try to emit debug info for TEMPLATE_DECL members.
3 template <class T> class K2PtrVectorBase {};
4 template <class T> class K2Vector {};
5 template <class U > class K2Vector<U*> : public K2PtrVectorBase<U*> {};
6 class ScriptInfoManager {
7   void PostRegister() ;
8   template <class SI> short ReplaceExistingElement(K2Vector<SI*>& v);
9 };
10 void ScriptInfoManager::PostRegister() {}