blob: 751339b79ab1693dd5e6d6d444eca8bd2cbb7da0 [file] [log] [blame]
Chris Lattnerc08564a2008-01-02 22:50:48 +00001// RUN: clang %s -fsyntax-only
2// PR1892
3void f(double a[restrict][5]); // should promote to restrict ptr.
4void f(double (* restrict a)[5]);
5