mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
225 B
Rust
13 lines
225 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
// Regression test for #40951.
|
|
|
|
const FOO: [&'static str; 1] = ["foo"];
|
|
|
|
fn find<T: PartialEq>(t: &[T], element: &T) { }
|
|
|
|
fn main() {
|
|
let x = format!("hi");
|
|
find(&FOO, &&*x);
|
|
}
|