rust/tests/ui/issues
许杰友 Jieyou Xu (Joe) 7b821d1752
Rollup merge of #151278 - estebank:issue-108894, r=davidtwco
Provide more context on trait bounds being unmet due to imperfect derive

When encountering a value that has a borrow checker error where the type was previously moved, when suggesting cloning verify that it is not already being derived. If it is, explain why the `derive(Clone)` doesn't apply:

```
note: if `TypedAddress<T>` implemented `Clone`, you could clone the value
  --> $DIR/derive-clone-implicit-bound.rs:6:1
   |
LL | #[derive(Clone, Copy)]
   |          ----- derived `Clone` adds implicit bounds on type parameters
LL | pub struct TypedAddress<T>{
   | ^^^^^^^^^^^^^^^^^^^^^^^^-^
   | |                       |
   | |                       introduces an implicit `T: Clone` bound
   | consider manually implementing `Clone` for this type
...
LL |         let old = self.return_value(offset);
   |                                     ------ you could clone this value
```

When encountering a bound coming from a derive macro, suggest manual impl of the trait.

Use the span for the specific param when adding bounds in builtin derive macros, so the diagnostic will point at them as well as the derive macro itself.

```
note: required for `Id<SomeNode>` to implement `PartialEq`
  --> $DIR/derive-implicit-bound.rs:5:10
   |
LL | #[derive(PartialEq, Eq)]
   |          ^^^^^^^^^
LL | pub struct Id<T>(PhantomData<T>);
   |               - unsatisfied trait bound introduced in this `derive` macro
   = help: consider manually implementing `PartialEq` to avoid undesired bounds
```

Mention that the trait could be manually implemented in E0599.

Fix rust-lang/rust#108894. Address rust-lang/rust#143714. Address #rust-lang/rust#146515 (but ideally would also suggest constraining the fn bound correctly as well).
2026-02-06 10:25:43 +08:00
..
auxiliary move some tests 2026-01-22 19:50:00 +01:00
issue-3668-non-constant-value-in-constant Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-24687-embed-debuginfo [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37291 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37311-type-length-limit Add support for shortening Instance and use it 2025-08-06 22:21:49 +00:00
issue-38875 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41652 Trim suggestion parts to the subset that is purely additive 2025-02-14 00:44:10 -08:00
issue-49851 Ignore more failing ui tests for GCC backend 2025-10-13 15:30:26 +02:00
issue-50264-inner-deref-trait Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50865-private-impl-trait [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52140 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52141 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52705 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-74236 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
.gitattributes Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2150.rs fix error 2026-01-21 13:54:00 +00:00
issue-2150.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2170-exe.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2316-c.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2380-b.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2414-c.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2470-bounds-check-overflow.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-2526-a.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2590.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2590.stderr Suggest .clone() in some move errors 2024-04-11 16:41:41 +00:00
issue-2631-b.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2708.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2723-b.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2761.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-2895.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2904.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2935.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2989.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2989.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-3012-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3021-b.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3021-b.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3021-d.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3021-d.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3026.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3029.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-3052.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3121.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3136-b.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3149.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3154.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3154.stderr Make E0621 missing lifetime suggestion verbose 2025-06-09 19:55:00 +00:00
issue-3220.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3344.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3344.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3424.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3447.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3521-2.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3521-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3521-2.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-3556.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3559.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3574.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3609.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3702-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3702-2.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-3702.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3753.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3779.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3779.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3847.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3874.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3888-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3895.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3979-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3979-xcrate.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3979.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3991.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4025.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4208.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4228.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4252.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4265.rs Continue compilation even if inherent impl checks fail 2024-02-14 21:04:51 +00:00
issue-4265.stderr use verbose for associated functions suggestion 2025-11-21 20:34:35 +08:00
issue-4335.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4335.stderr Adjust error message grammar to be less awkward 2025-08-14 12:50:07 -04:00
issue-4387.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4464.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4517.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-4517.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-4541.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4542.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4545.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4735.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4736.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4736.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-4759-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4759.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4830.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4875.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4972.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4972.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-5067.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5067.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-5100.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-5100.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-5192.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5315.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11224.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11508.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11552.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11592.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11677.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12612.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13507-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13620.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14344.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14422.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15562.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16278.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16530.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16560.rs compiletest: Add a //@ needs-threads directive 2024-03-06 12:35:07 -08:00
issue-16562.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16562.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16596.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16643.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16668.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16671.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16739.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16774.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16922-rpass.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16994.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17033.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-17033.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17121.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17216.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17252.rs Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
issue-17252.stderr Accept trivial consts based on trivial consts 2025-10-27 13:36:57 -04:00
issue-17322.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17336.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17337.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17337.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17546.rs Gate 2015 UI tests 2025-11-27 11:19:00 -05:00
issue-17546.stderr Gate 2015 UI tests 2025-11-27 11:19:00 -05:00
issue-17551.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17551.stderr Use fn ptr signature instead of {closure@..} in infer error 2024-04-10 00:41:27 +00:00
issue-17662.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17732.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17734.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17746.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17771.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17800.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17800.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-17816.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17897.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17904-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17904-2.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-17904.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17905-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17905-2.stderr recurse into refs when comparing tys for diagnostics 2023-12-07 23:00:46 -05:00
issue-17905.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17954.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17954.stderr bless test expectations 2025-02-04 10:57:49 +00:00
issue-17959.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17959.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17999.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17999.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18107.rs Make error message less awkward 2025-02-03 19:00:22 +00:00
issue-18107.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-18173.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18183.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18183.stderr Disentangle ForwardGenericParamBan and ConstParamTy ribs 2025-03-12 16:56:26 +00:00
issue-18188.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18232.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18446-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18446.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18446.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-18501.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18539.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18566.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18566.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18611.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-18611.stderr Normalize each signature input/output in typeck_with_fallback with its own span 2025-01-06 17:58:30 +00:00
issue-18711.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18783.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18783.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18809.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18845.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18859.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18906.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18913.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18919.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18919.stderr review comment: change wording 2024-02-01 03:31:03 +00:00
issue-18959.rs Use more detailed spans in dyn compat errors within bodies 2025-05-27 08:18:11 +00:00
issue-18959.stderr Use more detailed spans in dyn compat errors within bodies 2025-05-27 08:18:11 +00:00
issue-18988.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19001.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19037.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19086.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19086.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19098.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19127.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19135.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19293.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19367.rs Diagnose liveness on MIR. 2025-10-11 20:50:21 +00:00
issue-19380.rs Deduplicate dyn compatibility violations due to coercion 2025-05-26 10:57:54 +00:00
issue-19380.stderr Deduplicate dyn compatibility violations due to coercion 2025-05-26 10:57:54 +00:00
issue-19404.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19482.rs Detect object safety errors when assoc type is missing 2023-10-30 22:12:07 +00:00
issue-19482.stderr Generalize diag for missing assoc types to account for assoc consts 2026-01-21 12:53:46 +01:00
issue-19631.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19632.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19811-escape-unicode.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19850.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19982.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19991.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-19991.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-20009.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20055-box-trait.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20055-box-trait.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-20055-box-unsized-array.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20174.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20186.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20225.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20225.stderr More sophisticated span trimming 2025-02-21 00:41:17 +00:00
issue-20261.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20261.stderr Fix; correct placement of type inference error for method calls 2025-10-07 09:51:16 +01:00
issue-20313-rpass.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20313.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20313.stderr Bless tests 2024-01-13 12:46:58 -05:00
issue-20389.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20396.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20414.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20433.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20433.stderr On E0277 be clearer about implicit Sized bounds on type params and assoc types 2024-02-01 03:30:26 +00:00
issue-20544.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20575.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20644.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20797.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20803.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20831-debruijn.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-20831-debruijn.stderr fix: Alloc new errorcode E0803 for E0495 2025-02-15 12:18:30 +08:00
issue-20953.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20971.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-21033.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21140.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21160.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21160.stderr Do not suggest using -Zmacro-backtrace for builtin macros 2025-03-14 19:50:03 +00:00
issue-21174-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21202.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21202.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21245.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21332.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-21332.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-21361.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21384.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21400.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21402.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21546.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21546.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21622.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21634.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21701.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21701.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21763.rs Remove the -test suffix from normalize directives 2024-12-27 19:58:16 +11:00
issue-21763.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-21909.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21922.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21974.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-21974.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-22008.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22034.rs Use the rustc_private libc less in tests 2024-04-15 08:54:11 -04:00
issue-22034.stderr Use parenthetical notation for Fn traits 2024-05-29 22:26:54 +00:00
issue-22036.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22258.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22312.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22312.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22346.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22356.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22370.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22370.stderr Fix handling of const params defaults that ref Self & generalize diag 2026-01-21 12:53:47 +01:00
issue-22471.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22603.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22629.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22638.rs Gate the type length limit check behind a nightly flag 2024-07-12 21:16:09 -04:00
issue-22638.stderr Gate the type length limit check behind a nightly flag 2024-07-12 21:16:09 -04:00
issue-22673.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22777.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22781.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22814.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22872.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22872.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-22874.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-22874.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-22886.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22886.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22992-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23024.rs Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-23024.stderr Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-23041.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23041.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-23046.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23046.stderr Use fn ptr signature instead of {closure@..} in infer error 2024-04-10 00:41:27 +00:00
issue-23073.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23073.stderr More sophisticated span trimming 2025-02-21 00:41:17 +00:00
issue-23261.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23311.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23336.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23354-2.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-23354.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-23406.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23433.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23477.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23485.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23485.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-23491.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23543.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23543.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23544.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23544.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23550.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23589.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23589.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-23699.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23891.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23898.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23958.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23992.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24036.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24036.stderr Reorder fullfillment errors to keep more interesting ones first 2023-10-04 02:04:14 +00:00
issue-24086.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24227.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24308.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24322.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24322.stderr recurse into refs when comparing tys for diagnostics 2023-12-07 23:00:46 -05:00
issue-24363.rs UI tests: add missing diagnostic kinds where possible 2025-04-08 23:06:31 +03:00
issue-24363.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24424.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24424.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-24434.rs Remove uses of cfg(any()/all()) 2025-12-10 23:41:19 +00:00
issue-24533.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24589.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24682.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-24682.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-24947.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24954.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25076.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25076.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-25089.rs Ignore more failing ui tests for GCC backend 2025-09-26 15:33:48 +02:00
issue-25145.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25279.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25343.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25467.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25497.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25515.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25579.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25679.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25693.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25746-bool-transmute.rs Suggest {to,from}_ne_bytes for transmutations between arrays and integers, etc 2025-04-24 13:14:36 +07:00
issue-25757.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25810.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25901.rs Do not consider traits that have unsatisfied const conditions to be conditionally const 2025-01-14 18:52:42 +00:00
issue-25901.stderr Do not consider traits that have unsatisfied const conditions to be conditionally const 2025-01-14 18:52:42 +00:00
issue-26056.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26056.stderr Compiler: Finalize dyn compatibility renaming 2025-01-26 21:20:31 +01:00
issue-26127.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26186.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26205.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26217.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26217.stderr it's not a borrow checker limitation :< 2025-08-14 17:43:39 +02:00
issue-26237.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26237.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26468.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26484.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26619.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26619.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26641.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26655.rs Ignore more failing ui tests for GCC backend 2025-09-26 15:33:48 +02:00
issue-26709.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26802.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26805.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26948.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26948.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26997.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27042.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27042.stderr Remove note about iteration count in coerce 2024-04-30 12:46:59 +05:30
issue-27054-primitive-binary-ops.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27078.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27078.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-27105.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27240.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27281.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27340.rs Keep span of type in builtin derive macros expansions 2026-02-01 18:20:30 +00:00
issue-27340.stderr Keep span of type in builtin derive macros expansions 2026-02-01 18:20:30 +00:00
issue-27401-dropflag-reinit.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27433.fixed Account for let foo = expr; to suggest const foo: Ty = expr; 2024-07-11 20:39:24 +00:00
issue-27433.rs Account for let foo = expr; to suggest const foo: Ty = expr; 2024-07-11 20:39:24 +00:00
issue-27433.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-27592.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27592.stderr Update tests. 2025-08-26 14:46:11 +02:00
issue-27697.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27815.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27815.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27842.rs Tweak tuple indexing suggestion 2023-04-08 21:32:55 +00:00
issue-27842.stderr indexing: reword help 2025-10-01 07:39:03 +00:00
issue-27889.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27942.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-27942.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-27949.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27997.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28181.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28279.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28344.rs Gate 2015 UI tests 2025-11-27 11:19:00 -05:00
issue-28344.stderr Generalize diag for missing assoc types to account for assoc consts 2026-01-21 12:53:46 +01:00
issue-28472.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28472.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28498-must-work-ex1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28498-must-work-ex2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28498-ugeh-ex1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28550.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28561.rs Allow unpredictable_function_pointer_comparisons lint in more places 2025-06-12 07:35:05 +02:00
issue-28586.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28586.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-28600.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28625.rs Remove the -test suffix from normalize directives 2024-12-27 19:58:16 +11:00
issue-28625.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-28776.rs Remove revisions for THIR unsafeck 2024-01-05 09:30:27 +00:00
issue-28776.stderr Stabilize THIR unsafeck 2024-01-05 10:00:59 +00:00
issue-28828.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28839.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28936.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28971.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-28971.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-28983.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-28999.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29037.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29048.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29053.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29071-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29071.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29092.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29147-rpass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29147.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29147.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-29265.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29276.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29466.rs ci: Begin running ui tests with rust.debuginfo-level-tests=1 2025-08-22 17:27:47 +02:00
issue-29485.rs Ignore more failing ui tests for GCC backend 2025-09-26 15:33:48 +02:00
issue-29516.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29522.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29663.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29668.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29723.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29723.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29743.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29821.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29857.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29861.rs Merge check_mod_impl_wf and check_mod_type_wf 2024-03-07 06:27:09 +00:00
issue-29861.stderr Merge check_mod_impl_wf and check_mod_type_wf 2024-03-07 06:27:09 +00:00
issue-29948.rs Add ignore-backends annotations in failing GCC backend ui tests 2025-07-23 13:48:04 +02:00
issue-30018-panic.rs Ignore more failing ui tests for GCC backend 2025-09-26 15:33:48 +02:00
issue-30081.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30123.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30123.stderr Avoid extra path trimming in method not found error 2025-05-24 23:31:07 +02:00
issue-30255.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30255.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30371.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30380.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-30530.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30589.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30589.stderr Merge E0412 into E0425 2025-12-02 18:25:13 +00:00
issue-30615.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30891.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31011.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-31011.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-31267-additional.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31299.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31511.rs Use wide pointers consistenly across the compiler 2024-10-04 14:06:48 +02:00
issue-31511.stderr Use wide pointers consistenly across the compiler 2024-10-04 14:06:48 +02:00
issue-31702.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31769.rs Update uitests 2025-08-14 18:18:42 +02:00
issue-31769.stderr Update uitests 2025-08-14 18:18:42 +02:00
issue-31776.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-31910.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-31910.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-32008.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32292.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32324.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32377.rs Remove the -test suffix from normalize directives 2024-12-27 19:58:16 +11:00
issue-32377.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-32389.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32518.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32782.rs Updated uitests for new parser 2025-08-22 08:58:45 +02:00
issue-32782.stderr sort attribute targets for more consistent error messages 2025-10-08 08:32:03 +02:00
issue-32995.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32995.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33202.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33241.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33287.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33387.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33461.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33504.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33504.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-33525.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33525.stderr recover primary span label 2023-11-16 17:00:23 +00:00
issue-33571.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33571.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-33770.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-33941.current.stderr Use structurally_normalize instead of manual normalizes-to goals 2025-01-22 07:04:53 +00:00
issue-33941.next.stderr Use structurally_normalize instead of manual normalizes-to goals 2025-01-22 07:04:53 +00:00
issue-33941.rs Use structurally_normalize instead of manual normalizes-to goals 2025-01-22 07:04:53 +00:00
issue-34334.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34334.stderr When a trait isn't implemented, but another similar impl is found, point at it: 2025-10-31 20:38:31 +00:00
issue-34349.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34349.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-34373.rs Add missing dyn keywords to tests that do not test for them Part 2 2025-06-03 13:28:38 +02:00
issue-34373.stderr Add missing dyn keywords to tests that do not test for them Part 2 2025-06-03 13:28:38 +02:00
issue-34427.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34503.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34503.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-34571.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34751.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34780.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34796.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34839.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35139.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-35139.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-35423.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35570.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-35570.stderr Normalize each signature input/output in typeck_with_fallback with its own span 2025-01-06 17:58:30 +00:00
issue-35600.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35815.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35976.rs Gate 2015 UI tests 2025-11-27 11:19:00 -05:00
issue-35976.unimported.stderr Gate 2015 UI tests 2025-11-27 11:19:00 -05:00
issue-35988.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-35988.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-36036-associated-type-layout.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36260.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36299.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36299.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-36379.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36474.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36744-bitcast-args-if-needed.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36816.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36836.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36836.stderr Merge E0412 into E0425 2025-12-02 18:25:13 +00:00
issue-36856.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36936.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36954.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37051.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37109.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37131.rs Ignore failing GCC test 2025-12-05 09:51:27 -05:00
issue-37131.stderr Make not finding core a fatal error 2024-03-06 18:19:13 -05:00
issue-37510.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37665.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37665.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-37725.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37733.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37884.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-37884.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-38160.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38190.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38226.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38381.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38412.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38412.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-38437.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38556.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38727.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38763.rs tests: use needs-threads instead of ignore-emscripten 2025-01-23 20:51:29 +08:00
issue-38857.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38857.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38942.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38954.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38954.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-39367.rs Fix error message for static references or mutable references 2025-04-26 14:48:30 +09:00
issue-39367.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-39548.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39687.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-39687.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-39709.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39808.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39827.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39848.rs More detail when expecting expression but encountering bad macro argument 2023-11-16 16:19:04 +00:00
issue-39848.stderr Increase accuracy of if condition misparse suggestion 2024-11-16 20:03:31 +00:00
issue-39970.rs Mention fn coercion rules (needs to be expanded) 2023-01-30 21:51:33 +00:00
issue-39970.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-39984.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40000.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40000.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-40288-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40288-2.stderr Make E0621 missing lifetime suggestion verbose 2025-06-09 19:55:00 +00:00
issue-40288.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40288.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-40951.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41053.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-41298.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41479.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41498.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41549.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41549.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41604.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41677.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41696.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41726.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41726.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-41742.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41742.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41744.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41849-variance-req.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41880.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41880.stderr Use tcx.short_string() in more diagnostics 2025-08-07 21:18:00 +00:00
issue-41888.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41936-variance-coerce-unsized-cycle.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41974.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41974.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42007.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42106.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42106.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42148.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42210.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42312.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42312.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-42467.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42552.rs Replace elided_named_lifetimes with mismatched_lifetime_syntaxes 2025-06-04 10:40:04 -04:00
issue-42755.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42755.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42796.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42796.stderr Do not mention -Zmacro-backtrace for std macros that are a wrapper around a compiler intrinsic 2026-01-26 17:34:31 +00:00
issue-42880.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42880.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42956.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43250.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43250.stderr Change wording 2024-04-29 14:53:38 +02:00
issue-43291.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43355.rs compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-43355.stderr compiletest: Make diagnostic kind mandatory on line annotations 2025-04-30 10:44:24 +03:00
issue-43357.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43420-no-over-suggest.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43420-no-over-suggest.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-43424.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43424.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-43431.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-43431.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-43692.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43806.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43853.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43910.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43923.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43988.rs Update uitests 2025-08-14 18:18:42 +02:00
issue-43988.stderr If there are too many suggestions for malformed attribute, do not suggest them 2025-12-12 14:55:17 +01:00
issue-44023.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-44023.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-44056.rs Ignore more failing ui tests for GCC backend 2025-09-26 15:33:48 +02:00
issue-44216-add-instant.rs Update test directives for wasm32-wasip1 2024-03-11 09:36:35 -07:00
issue-44216-add-system-time.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-44216-sub-instant.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-44216-sub-system-time.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
issue-44239.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44239.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44239.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
issue-44247.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44405.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-44405.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-44730.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44851.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45425.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45510.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45562.fixed Fix double error for #[no_mangle] on consts 2025-10-08 17:46:33 +02:00
issue-45562.rs Fix double error for #[no_mangle] on consts 2025-10-08 17:46:33 +02:00
issue-45562.stderr Simplify and robustly compute suggestion span using 2025-12-04 11:01:40 +09:00
issue-45697-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45697-1.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-45697.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45697.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-45730.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45730.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45731.rs Fix test suite in iOS/tvOS/watchOS/visionOS simulator 2025-09-19 13:55:03 +02:00
issue-45801.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45801.stderr When a trait isn't implemented, but another similar impl is found, point at it: 2025-10-31 20:38:31 +00:00
issue-46069.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46101.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46101.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-46302.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46302.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46311.rs address review comments 2025-08-22 13:16:44 +08:00
issue-46311.stderr address review comments 2025-08-22 13:16:44 +08:00
issue-46604.rs const checks: avoid 'top-level scope' terminology 2025-06-27 17:03:48 +02:00
issue-46604.stderr Update uitests 2026-01-18 22:41:00 +01:00
issue-46756-consider-borrowing-cast-or-binexpr.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46756-consider-borrowing-cast-or-binexpr.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46756-consider-borrowing-cast-or-binexpr.stderr Make suggest_deref_or_ref return a multipart suggestion 2023-05-08 03:42:21 +00:00
issue-46771.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46771.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46855.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47094.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47094.stderr bless tests with new lint messages 2025-08-19 21:27:10 +02:00
issue-47309.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47364.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-47486.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47486.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47703-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47703-tuple.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47703.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47722.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48006.rs distinguish overflow and unimplemented in Step::steps_between 2024-11-21 15:49:55 -08:00
issue-48131.rs compiletest: Do not require annotations on empty labels and suggestions 2025-05-03 22:49:23 +03:00
issue-48131.stderr compiletest: Do not require annotations on empty labels and suggestions 2025-05-03 22:49:23 +03:00
issue-48132.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48159.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48728.rs stabilize -Znext-solver=coherence 2024-10-15 13:11:00 +02:00
issue-48984.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49298.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49632.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49919.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49919.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-49955.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49973.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50187.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-50411.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50415.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50518.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50618.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50618.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50761.rs Use non-2015 edition paths in tests that do not test for their resolution 2025-06-03 13:35:31 +02:00
issue-50781.rs Deduplicate dyn compatibility violations due to coercion 2025-05-26 10:57:54 +00:00
issue-50781.stderr Use more detailed spans in dyn compat errors within bodies 2025-05-27 08:18:11 +00:00
issue-50811.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51102.rs UI tests: add missing diagnostic kinds where possible 2025-04-08 23:06:31 +03:00
issue-51102.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51116.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51116.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51655.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51798.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51907.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51947.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52049.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52049.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-52126-assign-op-invariance.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52126-assign-op-invariance.stderr Improve diagnostics for buffer reuse with borrowed references 2025-10-22 21:11:02 +09:00
issue-52262.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52262.stderr Suggest .clone() in some move errors 2024-04-11 16:41:41 +00:00
issue-52489.rs use backticks instead of single quotes when reporting "use of unstable library feature" 2024-11-03 13:55:52 -08:00
issue-52489.stderr use backticks instead of single quotes when reporting "use of unstable library feature" 2024-11-03 13:55:52 -08:00
issue-52533.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52533.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-53251.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-53251.stderr Revert suggestion verbosity change 2024-07-22 22:51:53 +00:00
issue-53275.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-60218.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-60218.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-67039-unsound-pin-partialeq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-67039-unsound-pin-partialeq.stderr Stop inverting expectation in normalization errors 2024-10-16 13:44:56 -04:00