mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
8 lines
256 B
Objective-C
8 lines
256 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -x objective-c -Wauto-import -fmodule-cache-path %t -fmodules -F %S/Inputs %s -verify
|
|
|
|
#include <NotAModule/NotAModule.h>
|
|
|
|
@__experimental_modules_import NotAModule; // expected-error{{module 'NotAModule' not found}}
|
|
|
|
|