Richard Smith | fd8634a | 2013-10-23 02:17:46 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Richard Smith | 47972af | 2015-06-16 00:08:24 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -x objective-c++ -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify |
Richard Smith | fd8634a | 2013-10-23 02:17:46 +0000 | [diff] [blame] | 3 | |
4 | @import using_decl.a; | ||||
5 | |||||
6 | // expected-no-diagnostics | ||||
7 | UsingDecl::using_decl_type x = UsingDecl::using_decl_var; | ||||
8 | UsingDecl::inner y = x; |