diff options
Diffstat (limited to 'test/CXX/temp/temp.param/p2.cpp')
-rw-r--r-- | test/CXX/temp/temp.param/p2.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CXX/temp/temp.param/p2.cpp b/test/CXX/temp/temp.param/p2.cpp new file mode 100644 index 0000000000..a402cf6f88 --- /dev/null +++ b/test/CXX/temp/temp.param/p2.cpp @@ -0,0 +1,16 @@ +// RUN: clang-cc -fsyntax-only -verify %s + +// There is no semantic difference between class and typename in a +// template-parameter. typename followed by an unqualified-id names a +// template type parameter. +template<class T> struct X; +template<typename T> struct X; + +// typename followed by aqualified-id denotes the type in a non-type +// parameter-declaration. +// FIXME: template<typename T, typename T::type Value> struct Y; + +// A storage class shall not be specified in a template-parameter declaration. +template<static int Value> struct Z; // FIXME: expect an error + +// FIXME: add the example from p2 |