14 lines
213 B
Rust
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() {}
|