mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
6 lines
207 B
C++
6 lines
207 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
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;
|