summaryrefslogtreecommitdiffstats
path: root/test/CXX/temp/temp.param/p2.cpp
blob: a402cf6f888df95efa395d1beb7c81cbcdc10333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
OpenPOWER on IntegriCloud