mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 05:36:23 +00:00
9 lines
128 B
Rust
9 lines
128 B
Rust
//@ known-bug: #134162
|
|
|
|
fn main() {
|
|
struct X;
|
|
|
|
let xs = [X, X, X];
|
|
let eq = xs == [panic!("panic evaluated"); 2];
|
|
}
|