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