rust/tests/ui/impl-trait/unsize_slice.rs
2024-06-19 08:28:31 +00:00

14 lines
213 B
Rust

//! Test that we allow unsizing `[Opaque; N]` to `[Concrete]`.
//@check-pass
fn hello() -> [impl Sized; 2] {
if false {
let x = hello();
let _: &[i32] = &x;
}
todo!()
}
fn main() {}