You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
268 B

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