mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +00:00
5 lines
80 B
Rust
5 lines
80 B
Rust
// run-pass
|
|
pub fn main() {
|
|
assert_eq!([1, 2, 3][..], vec![1, 2, 3][..]);
|
|
}
|