mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
16 lines
371 B
Rust
16 lines
371 B
Rust
|
// 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).
|
||
|
|
||
|
// EMIT_MIR rustc.ops-function-Fn-call.AddMovesForPackedDrops.before.mir
|
||
|
fn main() {
|
||
|
call(noop as fn());
|
||
|
}
|
||
|
|
||
|
fn noop() {}
|
||
|
|
||
|
fn call<F: Fn()>(f: F) {
|
||
|
f();
|
||
|
}
|