brintos

brintos / llvm-project-archived public Read only

0
0
Text · 258 B · ba945a1 Raw
14 lines · cpp
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/hidden-names %s -verify3// expected-no-diagnostics4 5#include "visible.h"6 7using namespace NS;8 9namespace {10  struct X { void f(); };11}12 13void X::f() {}14