diff options
-rw-r--r-- | test/SemaTemplate/dependent-type-identity.cpp | 7 |
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 { |