blob: 0e4c36609dc1bd3f5239dd9b918cb7847df6989d [file] [log] [blame]
Daniel Dunbara45cf5b2009-03-24 02:24:461// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregorf8f86832009-02-11 18:16:402
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;
Anders Carlssondd096d82009-06-05 02:12:3213
14template<typename T = int> struct Z;
15template struct Z<>;