xref: /llvm-project/clang/test/CXX/temp/temp.param/p8.cpp (revision c6e68daac0fa6e77a89f3ca72f266a528503dd1c)
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