blob: ba945a1d3c8b2bd265d80b05f90323ce592c2a7d [file] [log] [blame]
Richard Smith76ea1962017-01-26 23:07:59 +00001// 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
7using namespace NS;
8
9namespace {
10 struct X { void f(); };
11}
12
13void X::f() {}