blob: ce4beabb597ff20f07de1daac20d9289fd4f5239 [file] [log] [blame]
// RUN: rm -rf %t && mkdir -p %t
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/ModulesCache -iapinotes-modules %S/Inputs/APINotes -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;
}