mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-30 22:12:15 +00:00
14 lines
214 B
Rust
14 lines
214 B
Rust
|
//@ check-pass
|
||
|
|
||
|
fn main() {}
|
||
|
|
||
|
const fn foo() {
|
||
|
let x = [1, 2, 3, 4, 5];
|
||
|
let y: &[_] = &x;
|
||
|
|
||
|
struct Foo<T: ?Sized>(bool, T);
|
||
|
|
||
|
let x: Foo<[u8; 3]> = Foo(true, [1, 2, 3]);
|
||
|
let y: &Foo<[u8]> = &x;
|
||
|
}
|