17 lines · cpp
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify -I%S/Inputs/macro-masking3// RxN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-local-submodule-visibility %s -fmodules-cache-path=%t -verify -I%S/Inputs/macro-masking -DLOCAL_VISIBILITY4// expected-no-diagnostics5 6#include "a.h"7 8#ifdef LOCAL_VISIBILITY9# ifndef MACRO10# error should still be defined, undef does not override define11# endif12#else13# ifdef MACRO14# error should have been undefined!15# endif16#endif17