[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / AST / attr-swift_bridge.m
blob2caa86bef4c0eed82e4ce5be97561f36b6f8fcf1
1 // RUN: %clang_cc1 -fsyntax-only -ast-dump %s | FileCheck %s
3 struct __attribute__((__swift_bridge__("BridgedS"))) S;
4 // CHECK: RecordDecl {{.*}} struct S
5 // CHECK: SwiftBridgeAttr {{.*}} "BridgedS"
7 struct S {
8 };
10 // CHECK: RecordDecl {{.*}} struct S definition
11 // CHECK: SwiftBridgeAttr {{.*}} Inherited "BridgedS"