mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
274 B
Rust
13 lines
274 B
Rust
//@ only-wasm32
|
|
//@ compile-flags: -C opt-level=2
|
|
//@ build-pass
|
|
|
|
// Regression test for #76281.
|
|
// This seems like an issue related to LLVM rather than
|
|
// libs-impl so place here.
|
|
|
|
fn main() {
|
|
let mut v: Vec<&()> = Vec::new();
|
|
v.sort_by_key(|&r| r as *const ());
|
|
}
|