[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / InterfaceStubs / namespace-alias.cpp
blob490cc02035242bf61aa043e77e0d9898f649940f
1 // RUN: %clang_cc1 -o - -emit-interface-stubs %s | FileCheck %s
3 // CHECK: --- !ifs-v1
4 // CHECK-NEXT: IfsVersion: 3.0
5 // CHECK-NEXT: Target:
6 // CHECK-NEXT: Symbols:
7 // CHECK-NEXT: ...
9 // NamespaceAliasDecl
10 namespace NS { }
11 namespace B = NS;