1*67e74705SXin Li// RUN: rm -rf %t 2*67e74705SXin Li// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs %s -verify 3*67e74705SXin Li#include <Module/NotInModule.h> // expected-warning{{missing submodule 'Module.NotInModule'}} 4*67e74705SXin Li 5*67e74705SXin Liint getNotInModule() { 6*67e74705SXin Li return not_in_module; 7*67e74705SXin Li} 8