aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-05-07 15:40:54 +0000
committerDouglas Gregor <dgregor@apple.com>2009-05-07 15:40:54 +0000
commita6c0e07df204c5719aa6ef12456830a9af2c7fbe (patch)
tree21db44c19bfa993581d8f28a0d6e0b9945b1c2f7
parent6bbf646ffcb407a26755a01bef44d294310001e2 (diff)
Document the dependent type equivalence test case's purpose.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71162 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/SemaTemplate/dependent-type-identity.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/SemaTemplate/dependent-type-identity.cpp b/test/SemaTemplate/dependent-type-identity.cpp
index 61fa81a654..6843dbe892 100644
--- a/test/SemaTemplate/dependent-type-identity.cpp
+++ b/test/SemaTemplate/dependent-type-identity.cpp
@@ -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 {