// RUN: %clang_cc1 -fsyntax-only -verify %s // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DCPP11 // RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify %s -DCPP17 // 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 struct X; template struct X; // typename followed by aqualified-id denotes the type in a non-type // parameter-declaration. template struct Y0; template::type Value> struct Y1; // A storage class shall not be specified in a template-parameter declaration. template struct Z; //expected-error{{invalid declaration specifier}} template struct Z0; //expected-error{{expected template parameter}} expected-error{{expected identifier}} expected-error{{extraneous 'template<>' in declaration of struct 'Z0'}} expected-note{{did you mean to use 'typename'?}} template struct Z1; //expected-error2{{invalid declaration specifier}} template struct Z2; //expected-error{{invalid declaration specifier}} template struct Z3; //expected-error{{invalid declaration specifier}} template struct Z4; //expected-error{{invalid declaration specifier}} template struct Z5; //expected-error{{invalid declaration specifier}} template struct Z6; //expected-error{{invalid declaration specifier}} template struct Z7; //expected-error{{invalid declaration specifier}} template struct Z8; //expected-error{{invalid declaration specifier}} template struct Z9; // OK template struct Z10; // OK #ifdef CPP11 template struct Z11; //expected-error{{invalid declaration specifier}} template struct Z12; //expected-error{{invalid declaration specifier}} #endif #ifdef CPP17 template struct Z13; // OK #endif // Make sure that we properly disambiguate non-type template parameters that // start with 'class'. class X1 { }; template struct Y2 { }; // FIXME: add the example from p2