aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/temp_arg.cpp
blob: b8bb279caf2dcab6e4f1b3041cfee1905441327f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang -fsyntax-only -verify %s
template<typename T, 
         int I, 
         template<typename> class TT>
  class A; // expected-note 2 {{template is declared here}}

template<typename> class X;

A<int, 0, X> * a1;

A<float, 1, X, double> *a2; // expected-error{{too many template arguments for class template 'A'}} \
          // expected-error{{unqualified-id}}
A<float, 1> *a3; // expected-error{{too few template arguments for class template 'A'}} \
          // expected-error{{unqualified-id}}