Nick Lewycky | f33d549 | 2012-04-12 07:56:21 +0000 | [diff] [blame] | 1 | @__experimental_modules_import redecl_namespaces_left; |
| 2 | @__experimental_modules_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 -x objective-c++ -fmodule-cache-path %t -emit-module -fmodule-name=redecl_namespaces_left %S/Inputs/module.map |
| 12 | // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t -emit-module -fmodule-name=redecl_namespaces_right %S/Inputs/module.map |
| 13 | // RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -w %s -verify |