xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.param/p8.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 template<int X[10]> struct A;
4 template<int *X> struct A;
5 template<int f(float, double)> struct B;
6 typedef float FLOAT;
7 template<int (*f)(FLOAT, double)> struct B;
8