File tree Expand file tree Collapse file tree
ProbingMacrosTests/Probing Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // swiftlint:disable:this file_name
12//
23// Probe.swift
34// Probing
Original file line number Diff line number Diff line change @@ -254,16 +254,16 @@ extension DeeplyCopyableTests {
254254 self . id = id
255255 }
256256
257+ static func < ( lhs: Person , rhs: Person ) -> Bool {
258+ lhs. id < rhs. id
259+ }
260+
257261 func hash( into hasher: inout Hasher ) {
258262 hasher. combine ( id)
259263 hasher. combine ( age)
260264 hasher. combine ( name)
261265 hasher. combine ( surname)
262266 }
263-
264- static func < ( lhs: Person , rhs: Person ) -> Bool {
265- lhs. id < rhs. id
266- }
267267 }
268268}
269269
Original file line number Diff line number Diff line change 148148 macros: macros
149149 )
150150 }
151+ }
152+
153+ extension EffectMacroTests {
151154
152155 func testExpansionWithExecutorPreference( ) {
153156 assertMacroExpansion (
218221 macros: macros
219222 )
220223 }
224+ }
225+
226+ extension EffectMacroTests {
221227
222228 func testExpansionWithNestedChildren( ) {
223229 assertMacroExpansion (
You can’t perform that action at this time.
0 commit comments