Home | History | Annotate | Download | only in Modules
      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 -x objective-c++ -fmodules-cache-path=%t -emit-module -fmodule-name=redecl_namespaces_left %S/Inputs/module.map
     12 // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -emit-module -fmodule-name=redecl_namespaces_right %S/Inputs/module.map
     13 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I %S/Inputs -w %s -verify
     14