1
Fork 0

Merge commit '4cf4ffc6ba' into sync_cg_clif-2024-03-16

This commit is contained in:
bjorn3 2024-03-16 17:23:11 +00:00
commit 6697186f59
7 changed files with 83 additions and 30 deletions

View file

@ -167,6 +167,14 @@ fn main() {
transmute_fat_pointer();
rust_call_abi();
const fn no_str() -> Option<Box<str>> {
None
}
static STATIC_WITH_MAYBE_NESTED_BOX: &Option<Box<str>> = &no_str();
println!("{:?}", STATIC_WITH_MAYBE_NESTED_BOX);
}
fn panic(_: u128) {