blob: dd4af17d79fab046b64e38caac9f5137a851861f [file] [log] [blame]
Douglas Gregor247baca2009-06-13 06:59:07 +00001// RUN: clang-cc -fsyntax-only -verify %s
2template<int X[10]> struct A;
3template<int *X> struct A;
4template<int f(float, double)> struct B;
5typedef float FLOAT;
6template<int (*f)(FLOAT, double)> struct B;