xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/inferred-frameworks.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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