aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/typedef-variable-type.c
blob: b805b1e0578f24be7dcb79f313f9a34b7e085c36 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 %s -verify -fsyntax-only -pedantic -Wno-typedef-redefinition

// 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}}