2 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t \
3 // RUN: -fmodule-map-file=%S/Inputs/using-decl-redecl/module.modulemap \
4 // RUN: -I%S/Inputs/using-decl-redecl \
5 // RUN: -Wno-modules-ambiguous-internal-linkage \
11 namespace M
{ using ::n
; }
17 // Use a typo to trigger import of all declarations in N.
18 N::clstrinh s
; // expected-error {{did you mean 'clstring'}}
19 // expected-note@a.h:3 {{here}}
21 namespace M
{ using N::n
; }