]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/assert-eq-macro-unsized.rs
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[rust.git] / src / test / ui / macros / assert-eq-macro-unsized.rs
1 // run-pass
2 pub fn main() {
3     assert_eq!([1, 2, 3][..], vec![1, 2, 3][..]);
4 }