[cfe-commits] r71162 - /cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp

Douglas Gregor dgregor at apple.com
Thu May 7 08:41:24 PDT 2009


Author: dgregor
Date: Thu May  7 10:40:54 2009
New Revision: 71162

URL: http://llvm.org/viewvc/llvm-project?rev=71162&view=rev
Log:
Document the dependent type equivalence test case's purpose.

Modified:
    cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp

Modified: cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp?rev=71162&r1=71161&r2=71162&view=diff

==============================================================================
--- cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp (original)
+++ cfe/trunk/test/SemaTemplate/dependent-type-identity.cpp Thu May  7 10:40:54 2009
@@ -1,5 +1,12 @@
 // RUN: clang-cc -fsyntax-only -verify %s
 
+// This test concerns the identity of dependent types within the
+// canonical type system. This corresponds to C++ [temp.type], which
+// specifies type equivalence within a template.
+//
+// FIXME: template template parameters
+// FIXME: members of the current instantiation
+
 namespace N {
   template<typename T>
   struct X2 {





More information about the cfe-commits mailing list