mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-03 04:06:05 +00:00

modules. With this fixed, I no longer see any test regressions in the libc++ test suite when enabling a single-module module.map for libc++ (other than issues with my system headers). llvm-svn: 193219
9 lines
245 B
C++
9 lines
245 B
C++
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -x objective-c++ -fmodules -fmodules-cache-path=%t -I %S/Inputs %s -verify
|
|
|
|
@import using_decl.a;
|
|
|
|
// expected-no-diagnostics
|
|
UsingDecl::using_decl_type x = UsingDecl::using_decl_var;
|
|
UsingDecl::inner y = x;
|