Files
clang-p2996/clang/test/Sema/function.c
2008-01-02 22:50:48 +00:00

6 lines
143 B
C

// RUN: clang %s -fsyntax-only
// PR1892
void f(double a[restrict][5]); // should promote to restrict ptr.
void f(double (* restrict a)[5]);