mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 01:20:04 -04: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;
|