diff options
Diffstat (limited to 'test/Modules/merge-decl-order.cpp')
-rw-r--r-- | test/Modules/merge-decl-order.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Modules/merge-decl-order.cpp b/test/Modules/merge-decl-order.cpp new file mode 100644 index 0000000..d3b21fd --- /dev/null +++ b/test/Modules/merge-decl-order.cpp @@ -0,0 +1,9 @@ +// RUN: rm -rf %t +// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I%S/Inputs/merge-decl-order -verify %s +// expected-no-diagnostics + +// Check that we include all decls from 'a' before the decls from 'b' in foo's +// redecl chain. If we don't, then name lookup only finds invisible friend +// declarations and the lookup below will fail. +#include "b.h" +N::foo *use; |