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