| 1 | @import redecl_namespaces_left; |
| 2 | @import redecl_namespaces_right; |
| 3 | |
| 4 | void test() { |
| 5 | A::i; |
| 6 | A::j; |
| 7 | A::k; // expected-error {{no member named 'k' in namespace 'A'}} |
| 8 | } |
| 9 | |
| 10 | // RUN: rm -rf %t |
| 11 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -emit-module -fmodule-name=redecl_namespaces_left %S/Inputs/module.map |
| 12 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -emit-module -fmodule-name=redecl_namespaces_right %S/Inputs/module.map |
| 13 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs -w %s -verify |
| 14 | |