YouCompleteMe/cpp/llvm/tools/clang/test/Modules/redecl-namespaces.mm
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

14 lines
578 B
Plaintext

@__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