Skip to content

Commit cf1e15b

Browse files
committed
[NFC] Remove extension macro test from compiler_plugin_basic.swift
(cherry picked from commit 0ac000d)
1 parent 8938c95 commit cf1e15b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

lit_tests/compiler_plugin_basic.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,12 @@ macro MemberDeprecated() = #externalMacro(module: "ExamplePlugin", type: "Member
3434
@attached(conformance)
3535
macro Equatable() = #externalMacro(module: "ExamplePlugin", type: "EquatableConformanceMacro")
3636

37-
@attached(extension, conformances: Sendable)
38-
macro AddSendable() = #externalMacro(module: "ExamplePlugin", type: "SendableExtensionMacro")
39-
4037
@attached(accessor)
4138
macro DidSetPrint() = #externalMacro(module: "ExamplePlugin", type: "DidSetPrintMacro")
4239

4340
@Metadata
4441
@MemberDeprecated
4542
@Equatable
46-
@AddSendable
4743
@PeerWithSuffix
4844
struct MyStruct {
4945
@DidSetPrint
@@ -86,11 +82,6 @@ struct MyStruct {
8682
// CHECK-NEXT: extension MyStruct : Equatable {}
8783
// CHECK-NEXT: ------------------------------
8884

89-
// CHECK: @__swiftmacro_7TestApp8MyStruct9EquatablefMe_.swift
90-
// CHECK-NEXT: ------------------------------
91-
// CHECK-NEXT: extension MyStruct: Sendable {}
92-
// CHECK-NEXT: ------------------------------
93-
9485
// CHECK: @__swiftmacro_7TestApp8MyStructV5value11DidSetPrintfMa_.swift
9586
// CHECK-NEXT: ------------------------------
9687
// CHECK-NEXT: {

0 commit comments

Comments
 (0)