1 // Simply marking this as "#pragma clang system_header" didn't tickle the bug, rdar://problem/21134250.
2
3 void system1(int *ptr);
4 #if WARN_IN_SYSTEM_HEADERS
5 // expected-warning@-2{{pointer is missing a nullability type specifier}}
6 #endif
7
8 void system2(int * _Nonnull);
9