12 lines · plain
1// RUN: %clang_cc1 -ast-dump %s | FileCheck %s2 3struct __attribute__((__swift_bridge__("BridgedS"))) S;4// CHECK: RecordDecl {{.*}} struct S5// CHECK: SwiftBridgeAttr {{.*}} "BridgedS"6 7struct S {8};9 10// CHECK: RecordDecl {{.*}} struct S definition11// CHECK: SwiftBridgeAttr {{.*}} Inherited "BridgedS"12