blob: 40901f2c4fd760de5c70f5f714e541145da642c0 [file] [log] [blame]
// RUN: %clang_cc1 -fapinotes -fapinotes-cache-path=%t/APINotesCache -fsyntax-only -I %S/Inputs/Headers -F %S/Inputs/Frameworks %s -verify
#import <SomeKit/SomeKit.h>
int main() {
A *a;
[a transform: 0 integer: 0]; // expected-warning{{null passed to a callee that requires a non-null argument}}
return 0;
}