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