xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2009-06-16-DebugInfoCrash.cpp (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang_cc1 -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() {}
11