mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
185 B
Rust
12 lines
185 B
Rust
// compile-flags: -Z mir-opt-level=3
|
|
// run-pass
|
|
|
|
struct Baz<T: ?Sized> {
|
|
a: T
|
|
}
|
|
|
|
fn main() {
|
|
let d : Baz<[i32; 4]> = Baz { a: [1,2,3,4] };
|
|
assert_eq!([1, 2, 3, 4], d.a);
|
|
}
|