Skip to content

Commit 4cb26ad

Browse files
Add test
1 parent af97a11 commit 4cb26ad

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

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

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// compile-flags: -Zmir-opt-level=0 -Zvalidate-mir
2+
3+
// Tests that the `<fn() as Fn>` shim does not create a `Call` terminator with a `Self` callee
4+
// (as only `FnDef` and `FnPtr` callees are allowed in MIR).
5+
6+
// EMIT_MIR rustc.ops-function-Fn-call.AddMovesForPackedDrops.before.mir
7+
fn main() {
8+
call(noop as fn());
9+
}
10+
11+
fn noop() {}
12+
13+
fn call<F: Fn()>(f: F) {
14+
f();
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// MIR for `std::ops::Fn::call` before AddMovesForPackedDrops
2+
3+
fn std::ops::Fn::call(_1: *const fn(), _2: Args) -> <Self as std::ops::FnOnce<Args>>::Output {
4+
let mut _0: <Self as std::ops::FnOnce<Args>>::Output; // return place in scope 0 at $SRC_DIR/libcore/ops/function.rs:LL:COL
5+
6+
bb0: {
7+
_0 = move (*_1)() -> bb1; // scope 0 at $SRC_DIR/libcore/ops/function.rs:LL:COL
8+
}
9+
10+
bb1: {
11+
return; // scope 0 at $SRC_DIR/libcore/ops/function.rs:LL:COL
12+
}
13+
}

0 commit comments

Comments
 (0)