summaryrefslogtreecommitdiff
path: root/clang/test/Modules/redecl-namespaces.mm
blob: e338821564822dc9cf0650073253a54887785a19 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@__experimental_modules_import redecl_namespaces_left;
@__experimental_modules_import redecl_namespaces_right;

void test() {
  A::i;
  A::j;
  A::k;  // expected-error {{no member named 'k' in namespace 'A'}}
}

// RUN: rm -rf %t
// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t -emit-module -fmodule-name=redecl_namespaces_left %S/Inputs/module.map
// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t -emit-module -fmodule-name=redecl_namespaces_right %S/Inputs/module.map
// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -w %s -verify