mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
240 B
Rust
13 lines
240 B
Rust
// skip-filecheck
|
|
//@ compile-flags: -Zmir-opt-level=1 -Zinline-mir
|
|
pub fn f<T>(a: &T) -> *const T {
|
|
let b: &*const T = &(a as *const T);
|
|
*b
|
|
}
|
|
|
|
fn main() {
|
|
f(&2);
|
|
}
|
|
|
|
// EMIT_MIR issue_78192.f.InstSimplify-after-simplifycfg.diff
|