mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
33 lines
569 B
Rust
33 lines
569 B
Rust
// skip-filecheck
|
|
// compile-flags: -Z mir-opt-level=0
|
|
// EMIT_MIR issue_91633.hey.built.after.mir
|
|
fn hey<T> (it: &[T])
|
|
where
|
|
[T] : std::ops::Index<usize>,
|
|
{
|
|
let _ = &it[0];
|
|
}
|
|
|
|
// EMIT_MIR issue_91633.bar.built.after.mir
|
|
fn bar<T> (it: Box<[T]>)
|
|
where
|
|
[T] : std::ops::Index<usize>,
|
|
{
|
|
let _ = it[0];
|
|
}
|
|
|
|
// EMIT_MIR issue_91633.fun.built.after.mir
|
|
fn fun<T> (it: &[T]) -> &T
|
|
{
|
|
let f = &it[0];
|
|
f
|
|
}
|
|
|
|
// EMIT_MIR issue_91633.foo.built.after.mir
|
|
fn foo<T: Clone> (it: Box<[T]>) -> T
|
|
{
|
|
let f = it[0].clone();
|
|
f
|
|
}
|
|
fn main(){}
|