• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 template<int X[10]> struct A;
3 template<int *X> struct A;
4 template<int f(float, double)> struct B;
5 typedef float FLOAT;
6 template<int (*f)(FLOAT, double)> struct B;
7