mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
8 lines
475 B
C
8 lines
475 B
C
// RUN: %clang_cc1 %s -verify -fsyntax-only -pedantic -Wno-typedef-redefinition -std=c99
|
|
|
|
// Make sure we accept a single typedef
|
|
typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant expression}}
|
|
|
|
// And make sure we accept identical redefinitions in system headers
|
|
// (The test uses -Wno-typedef-redefinition to simulate this.)
|
|
typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant expression}}
|