2010-01-01 05:34:51 -05:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-06-14 05:24:02 -04:00
|
|
|
template<int X[10]> struct A;
|
|
|
|
|
template<int *X> struct A;
|
|
|
|
|
template<int f(float, double)> struct B;
|
|
|
|
|
typedef float FLOAT;
|
|
|
|
|
template<int (*f)(FLOAT, double)> struct B;
|