blob: 94976e9735c86925d91954efeb4547a58aa0f418 [file] [log] [blame]
Douglas Gregorc347d8e2009-02-11 18:16:40 +00001// RUN: clang -fsyntax-only -verify %s
2
3template<typename T, int N = 2> struct X; // expected-note{{template is declared here}}
4
5X<int, 1> *x1;
6X<int> *x2;
7
8X<> *x3; // expected-error{{too few template arguments for class template 'X'}} \
9 // FIXME: expected-error{{expected unqualified-id}}
10
11template<typename U = float, int M> struct X;
12
13X<> *x4;