2016-06-17 23:52:24 -05:00
|
|
|
#[derive(PartialEq, Debug)]
|
2016-06-08 06:43:34 -05:00
|
|
|
struct A;
|
|
|
|
|
|
|
|
fn zst_ret() -> A {
|
|
|
|
A
|
|
|
|
}
|
|
|
|
|
|
|
|
fn use_zst() -> A {
|
|
|
|
let a = A;
|
|
|
|
a
|
|
|
|
}
|
|
|
|
|
2016-06-17 23:52:24 -05:00
|
|
|
fn main() {
|
2018-09-15 09:35:37 -05:00
|
|
|
// Not using the () type here, as writes of that type do not even have MIR generated.
|
|
|
|
// Also not assigning directly as that's array initialization, not assignment.
|
|
|
|
let zst_val = [1u8; 0];
|
|
|
|
|
2016-06-17 23:52:24 -05:00
|
|
|
assert_eq!(zst_ret(), A);
|
|
|
|
assert_eq!(use_zst(), A);
|
2018-09-15 09:35:37 -05:00
|
|
|
let x = 42 as *mut [u8; 0];
|
2019-02-15 19:43:56 -06:00
|
|
|
// Reading and writing is ok.
|
2018-09-15 09:35:37 -05:00
|
|
|
unsafe { *x = zst_val; }
|
|
|
|
unsafe { let _y = *x; }
|
2016-06-17 23:52:24 -05:00
|
|
|
}
|