rust/src/test/mir-opt/fn-ptr-shim.rs

16 lines
370 B
Rust
Raw Normal View History

2020-06-15 18:54:40 +00:00
// compile-flags: -Zmir-opt-level=0 -Zvalidate-mir
// Tests that the `<fn() as Fn>` shim does not create a `Call` terminator with a `Self` callee
// (as only `FnDef` and `FnPtr` callees are allowed in MIR).
2020-07-27 19:22:43 +00:00
// EMIT_MIR core.ops-function-Fn-call.AddMovesForPackedDrops.before.mir
2020-06-15 18:54:40 +00:00
fn main() {
call(noop as fn());
}
fn noop() {}
fn call<F: Fn()>(f: F) {
f();
}