2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-05-10 16:24:06 +00:00
|
|
|
#![feature(test)]
|
2018-09-26 11:04:07 +00:00
|
|
|
#![allow(unused_mut)] // under NLL we get warning about `x` below: rust-lang/rust#54499
|
2018-05-10 16:24:06 +00:00
|
|
|
|
2020-12-28 17:15:16 +00:00
|
|
|
// This test is bogus (i.e., should be check-fail) during the period
|
2018-10-16 15:07:41 +00:00
|
|
|
// where #54986 is implemented and #54987 is *not* implemented. For
|
2019-04-22 07:40:08 +00:00
|
|
|
// now: just ignore it
|
2018-10-16 15:07:41 +00:00
|
|
|
//
|
2019-04-22 07:40:08 +00:00
|
|
|
// ignore-test
|
2018-10-16 15:07:41 +00:00
|
|
|
|
|
|
|
// This test is checking that the space allocated for `x.1` does not
|
|
|
|
// overlap with `y`. (The reason why such a thing happened at one
|
|
|
|
// point was because `x.0: Void` and thus the whole type of `x` was
|
|
|
|
// uninhabited, and so the compiler thought it was safe to use the
|
|
|
|
// space of `x.1` to hold `y`.)
|
|
|
|
//
|
|
|
|
// That's a fine thing to test when this code is accepted by the
|
|
|
|
// compiler, and this code is being transcribed accordingly into
|
|
|
|
// the ui test issue-21232-partial-init-and-use.rs
|
|
|
|
|
2018-05-10 16:24:06 +00:00
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
enum Void {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x: (Void, usize);
|
|
|
|
let mut y = 42;
|
|
|
|
x.1 = 13;
|
|
|
|
|
|
|
|
// Make sure `y` stays on the stack.
|
|
|
|
test::black_box(&mut y);
|
|
|
|
|
|
|
|
// Check that the write to `x.1` did not overwrite `y`.
|
|
|
|
// Note that this doesn't fail with optimizations enabled,
|
|
|
|
// because we can't keep `x.1` on the stack, like we can `y`,
|
|
|
|
// as we can't borrow partially initialized variables.
|
|
|
|
assert_eq!(y.to_string(), "42");
|
|
|
|
|
|
|
|
// Check that `(Void, usize)` has space for the `usize` field.
|
|
|
|
assert_eq!(std::mem::size_of::<(Void, usize)>(),
|
|
|
|
std::mem::size_of::<usize>());
|
|
|
|
}
|