Richard Smith | 76ea196 | 2017-01-26 23:07:59 +0000 | [diff] [blame^] | 1 | // RUN: rm -rf %t |
2 | // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/hidden-names %s -verify | ||||
3 | // expected-no-diagnostics | ||||
4 | |||||
5 | #include "visible.h" | ||||
6 | |||||
7 | using namespace NS; | ||||
8 | |||||
9 | namespace { | ||||
10 | struct X { void f(); }; | ||||
11 | } | ||||
12 | |||||
13 | void X::f() {} |