File tree 2 files changed +39
-2
lines changed
2 files changed +39
-2
lines changed Original file line number Diff line number Diff line change @@ -746,7 +746,7 @@ fn derive_relationship(
746
746
#[ inline]
747
747
fn from( entity: #bevy_ecs_path:: entity:: Entity ) -> Self {
748
748
Self {
749
- #( #members: core:: default :: Default :: default ( ) , ) , *
749
+ #( #members: core:: default :: Default :: default ( ) , ) *
750
750
#relationship_member: entity
751
751
}
752
752
}
@@ -809,7 +809,7 @@ fn derive_relationship_target(
809
809
#[ inline]
810
810
fn from_collection_risky( collection: Self :: Collection ) -> Self {
811
811
Self {
812
- #( #members: core:: default :: Default :: default ( ) , ) , *
812
+ #( #members: core:: default :: Default :: default ( ) , ) *
813
813
#relationship_member: collection
814
814
}
815
815
}
Original file line number Diff line number Diff line change @@ -385,4 +385,41 @@ mod tests {
385
385
assert ! ( !world. entity( b) . contains:: <Rel >( ) ) ;
386
386
assert ! ( !world. entity( b) . contains:: <RelTarget >( ) ) ;
387
387
}
388
+
389
+ #[ test]
390
+ fn relationship_with_multiple_non_target_fields_compiles ( ) {
391
+ #[ derive( Component ) ]
392
+ #[ relationship( relationship_target=Target ) ]
393
+ #[ expect( dead_code, reason = "test struct" ) ]
394
+ struct Source {
395
+ #[ relationship]
396
+ target : Entity ,
397
+ foo : u8 ,
398
+ bar : u8 ,
399
+ }
400
+
401
+ #[ derive( Component ) ]
402
+ #[ relationship_target( relationship=Source ) ]
403
+ struct Target ( Vec < Entity > ) ;
404
+
405
+ // No assert necessary, looking to make sure compilation works with the macros
406
+ }
407
+ #[ test]
408
+ fn relationship_target_with_multiple_non_target_fields_compiles ( ) {
409
+ #[ derive( Component ) ]
410
+ #[ relationship( relationship_target=Target ) ]
411
+ struct Source ( Entity ) ;
412
+
413
+ #[ derive( Component ) ]
414
+ #[ relationship_target( relationship=Source ) ]
415
+ #[ expect( dead_code, reason = "test struct" ) ]
416
+ struct Target {
417
+ #[ relationship]
418
+ target : Vec < Entity > ,
419
+ foo : u8 ,
420
+ bar : u8 ,
421
+ }
422
+
423
+ // No assert necessary, looking to make sure compilation works with the macros
424
+ }
388
425
}
You can’t perform that action at this time.
0 commit comments