rust/tests/ui/issues/issue-17734.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
423 B
Rust
Raw Normal View History

// run-pass
2014-10-04 06:01:43 +00:00
// Test that generating drop glue for Box<str> doesn't ICE
2014-10-04 06:01:43 +00:00
fn f(s: Box<str>) -> Box<str> {
s
}
fn main() {
// There is currently no safe way to construct a `Box<str>`, so improvise
let box_arr: Box<[u8]> = Box::new(['h' as u8, 'e' as u8, 'l' as u8, 'l' as u8, 'o' as u8]);
2014-10-04 06:01:43 +00:00
let box_str: Box<str> = unsafe { std::mem::transmute(box_arr) };
assert_eq!(&*box_str, "hello");
2014-10-04 06:01:43 +00:00
f(box_str);
}