Skip to content

Commit 49aabd8

Browse files
Fix rebase fallout
1 parent 4266807 commit 49aabd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/generator/resume-arg-size.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ fn main() {
2323

2424
// Neither of these generators have the resume arg live across the `yield`, so they should be
2525
// 4 Bytes in size (only storing the discriminant)
26-
assert_eq!(size_of_val(&gen_copy), 4);
27-
assert_eq!(size_of_val(&gen_move), 4);
26+
assert_eq!(size_of_val(&gen_copy), 1);
27+
assert_eq!(size_of_val(&gen_move), 1);
2828
}

0 commit comments

Comments
 (0)