blob: cc0da1942d49d4af937efdebbc92efc4efeef119 [file] [log] [blame]
Douglas Gregorf8f86832009-02-11 18:16:401// 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
Douglas Gregor7f741122009-02-25 19:37:188X<> *x3; // expected-error{{too few template arguments for class template 'X'}}
Douglas Gregorf8f86832009-02-11 18:16:409
10template<typename U = float, int M> struct X;
11
12X<> *x4;