summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/fn_ptr_shim.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/fn_ptr_shim.rs')
-rw-r--r--src/test/mir-opt/fn_ptr_shim.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/mir-opt/fn_ptr_shim.rs b/src/test/mir-opt/fn_ptr_shim.rs
deleted file mode 100644
index 64fbdc9de..000000000
--- a/src/test/mir-opt/fn_ptr_shim.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// compile-flags: -Zmir-opt-level=0
-
-// 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 core.ops-function-Fn-call.AddMovesForPackedDrops.before.mir
-fn main() {
- call(noop as fn());
-}
-
-fn noop() {}
-
-fn call<F: Fn()>(f: F) {
- f();
-}