rust/tests/mir-opt/fn_ptr_shim.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
355 B
Rust
Raw Normal View History

// compile-flags: -Zmir-opt-level=0
2020-06-16 02:54:40 +08:00
// 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-28 03:22:43 +08:00
// EMIT_MIR core.ops-function-Fn-call.AddMovesForPackedDrops.before.mir
2020-06-16 02:54:40 +08:00
fn main() {
call(noop as fn());
}
fn noop() {}
fn call<F: Fn()>(f: F) {
f();
}