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