Douglas Gregor | 247baca | 2009-06-13 06:59:07 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -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; |