| 1 | // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -isystem %S/Inputs/nullability-consistency-system %s -verify |
| 2 | // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -isystem %S/Inputs/nullability-consistency-system %s -Wsystem-headers -DWARN_IN_SYSTEM_HEADERS -verify |
| 3 | |
| 4 | #include "nullability-consistency-1.h" |
| 5 | #include "nullability-consistency-3.h" |
| 6 | #include "nullability-consistency-4.h" |
| 7 | #include "nullability-consistency-5.h" |
| 8 | #include "nullability-consistency-5.h" |
| 9 | #include "nullability-consistency-6.h" |
| 10 | #include "nullability-consistency-7.h" |
| 11 | #include "nullability-consistency-8.h" |
| 12 | #include "nullability-consistency-system.h" |
| 13 | |
| 14 | void h1(int *ptr) { } // don't warn |
| 15 | |
| 16 | void h2(int * _Nonnull) { } |
| 17 | |