xref: /llvm-project/clang/test/AST/attr-swift_bridge.m (revision 7c1d9b15eee3a34678addab2bab66f3020ac0753)
1// RUN: %clang_cc1 -ast-dump %s | FileCheck %s
2
3struct __attribute__((__swift_bridge__("BridgedS"))) S;
4// CHECK: RecordDecl {{.*}} struct S
5// CHECK: SwiftBridgeAttr {{.*}} "BridgedS"
6
7struct S {
8};
9
10// CHECK: RecordDecl {{.*}} struct S definition
11// CHECK: SwiftBridgeAttr {{.*}} Inherited "BridgedS"
12