Files
rust/tests/ui/dst/dst-bad-deep-2.rs

14 lines
453 B
Rust
Raw Normal View History

2017-06-08 14:49:54 +09:00
// Try to initialise a DST struct where the lost information is deeply nested.
// This is an error because it requires an unsized rvalue. This is a problem
// because it would require stack allocation of an unsized temporary (*g in the
// test).
2025-02-27 08:21:47 +00:00
struct Fat<T: ?Sized>(T);
2017-06-08 14:49:54 +09:00
pub fn main() {
2025-02-27 08:21:47 +00:00
let f: Fat<[isize; 3]> = Fat([5, 6, 7]);
let g: &Fat<[isize]> = &f;
let h: &Fat<Fat<[isize]>> = &Fat(*g);
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
2017-06-08 14:49:54 +09:00
}