rust/tests/ui/explicit-tail-calls
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00
..
become-macro.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-operator.fixed use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-operator.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-operator.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
become-outside.array.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
become-outside.constant.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
become-outside.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-trait-fn.rs fix tail call checks wrt `#[track_caller]` 2025-02-06 21:06:51 +01:00
become-uncallable.fixed use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-uncallable.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
become-uncallable.stderr implement checks for tail calls 2024-11-29 04:44:41 +01:00
callee_is_track_caller.rs fix tail call checks wrt `#[track_caller]` 2025-02-06 21:06:51 +01:00
caller_is_track_caller.rs fix tail call checks wrt `#[track_caller]` 2025-02-06 21:06:51 +01:00
caller_is_track_caller.stderr fix tail call checks wrt `#[track_caller]` 2025-02-06 21:06:51 +01:00
closure.fixed use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
closure.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
closure.stderr implement checks for tail calls 2024-11-29 04:44:41 +01:00
constck.rs Note def descr in NonConstFunctionCall 2024-12-23 22:15:32 +00:00
constck.stderr Note def descr in NonConstFunctionCall 2024-12-23 22:15:32 +00:00
ctfe-arg-bad-borrow.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-arg-bad-borrow.stderr don't drop types with no drop glue when tailcalling 2025-01-24 06:45:19 +01:00
ctfe-arg-good-borrow.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-arg-move.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-collatz-multi-rec.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-id-unlimited.return.stderr fix ICE when promoted has layout size overflow 2024-12-01 19:52:27 +01:00
ctfe-id-unlimited.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-tail-call-panic.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
ctfe-tail-call-panic.stderr Support tail calls in the interpreter 2024-07-07 17:11:05 +02:00
drop-order.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
in-closure.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
in-closure.stderr implement checks for tail calls 2024-11-29 04:44:41 +01:00
return-lifetime-sub.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
return-mismatches.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
return-mismatches.stderr Support tail calls in mir via `TerminatorKind::TailCall` 2024-07-07 17:11:04 +02:00
signature-mismatch.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
signature-mismatch.stderr implement checks for tail calls 2024-11-29 04:44:41 +01:00
two-phase.rs add a regression test 2025-01-24 18:33:00 +01:00
unsafeck.rs use `expect(incomplete_feature)` instead of `allow` in tail call tests 2024-11-29 04:44:41 +01:00
unsafeck.stderr Support tail calls in mir via `TerminatorKind::TailCall` 2024-07-07 17:11:04 +02:00