Add tests for overlapping explicitly dropped locals in generators
This commit is contained in:
parent
4b65a86eba
commit
156173f83b
@ -55,8 +55,20 @@ fn overlap_move_points() -> impl Generator<Yield = (), Return = ()> {
|
||||
}
|
||||
}
|
||||
|
||||
fn overlap_x_and_y() -> impl Generator<Yield = (), Return = ()>{
|
||||
static || {
|
||||
let x = [0u8; 1024];
|
||||
yield;
|
||||
drop(x);
|
||||
let y = [0u8;1024];
|
||||
yield;
|
||||
drop(y);
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
assert_eq!(1028, std::mem::size_of_val(&move_before_yield()));
|
||||
assert_eq!(1032, std::mem::size_of_val(&move_before_yield_with_noop()));
|
||||
assert_eq!(2056, std::mem::size_of_val(&overlap_move_points()));
|
||||
assert_eq!(2052, std::mem::size_of_val(&overlap_x_and_y()));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user