1 // RUN: rm -rf %t 2 // RUN: %clang_cc1 -x objective-c -Wauto-import -fmodules-cache-path=%t -fmodules -F %S/Inputs %s -verify 3 4 #include <NotAModule/NotAModule.h> 5 6 @import NotAModule; // expected-error{{module 'NotAModule' not found}} 7 8 9