mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-03 22:26:05 +00:00
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;
|