rust/tests/ui/impl-trait/unsize_slice.rs

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

14 lines
213 B
Rust
Raw Normal View History

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