2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2014-10-04 06:01:43 +00:00
|
|
|
// Test that generating drop glue for Box<str> doesn't ICE
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
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
|
2015-02-15 08:52:21 +00:00
|
|
|
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) };
|
2015-02-02 02:53:25 +00:00
|
|
|
assert_eq!(&*box_str, "hello");
|
2014-10-04 06:01:43 +00:00
|
|
|
f(box_str);
|
|
|
|
}
|