18fbe78f6SDaniel Dunbar // RUN: %clang_cc1 -fsyntax-only -verify %s 2*c6e68daaSAndy Gibbs // expected-no-diagnostics 3a5d5c749SDouglas Gregor template<int X[10]> struct A; 4a5d5c749SDouglas Gregor template<int *X> struct A; 5a5d5c749SDouglas Gregor template<int f(float, double)> struct B; 6a5d5c749SDouglas Gregor typedef float FLOAT; 7a5d5c749SDouglas Gregor template<int (*f)(FLOAT, double)> struct B; 8