-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// run-pass | ||
|
||
#![feature(const_ptr_write)] | ||
#![feature(const_fn_trait_bound)] | ||
#![feature(const_mut_refs)] | ||
|
||
// Or, equivalently: `MaybeUninit`. | ||
pub union BagOfBits<T: Copy> { | ||
uninit: (), | ||
_storage: T, | ||
} | ||
|
||
pub const fn make_1u8_bag<T: Copy>() -> BagOfBits<T> { | ||
assert!(core::mem::size_of::<T>() >= 1); | ||
let mut bag = BagOfBits { uninit: () }; | ||
unsafe { (&mut bag as *mut _ as *mut u8).write(1); }; | ||
bag | ||
} | ||
|
||
pub fn check_bag<T: Copy>(bag: &BagOfBits<T>) { | ||
let val = unsafe { (bag as *const _ as *const u8).read() }; | ||
assert_eq!(val, 1); | ||
} | ||
|
||
fn main() { | ||
check_bag(&make_1u8_bag::<[usize; 1]>()); // Fine | ||
check_bag(&make_1u8_bag::<usize>()); // Fine | ||
|
||
const CONST_ARRAY_BAG: BagOfBits<[usize; 1]> = make_1u8_bag(); | ||
check_bag(&CONST_ARRAY_BAG); // Fine. | ||
const CONST_USIZE_BAG: BagOfBits<usize> = make_1u8_bag(); | ||
check_bag(&CONST_USIZE_BAG); // Panics | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// check-pass | ||
|
||
#![feature(const_swap)] | ||
#![feature(const_mut_refs)] | ||
|
||
#[repr(C)] | ||
struct Demo(u64, bool, u64, u32, u64, u64, u64); | ||
|
||
const C: (Demo, Demo) = { | ||
let mut x = Demo(1, true, 3, 4, 5, 6, 7); | ||
let mut y = Demo(10, false, 12, 13, 14, 15, 16); | ||
std::mem::swap(&mut x, &mut y); | ||
(x, y) | ||
}; | ||
|
||
fn main() {} |