rust/tests/ui/specialization/defaultimpl
Esteban Küber 6c31f6ce12 Provide structured suggestion for #![feature(foo)]
```
error: `S2<'_>` is forbidden as the type of a const generic parameter
  --> $DIR/lifetime-in-const-param.rs:5:23
   |
LL | struct S<'a, const N: S2>(&'a ());
   |                       ^^
   |
   = note: the only supported types are integers, `bool` and `char`
help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
   |
LL + #![feature(adt_const_params)]
   |
```

Fix #55941.
2024-03-18 16:08:58 +00:00
..
auxiliary
allowed-cross-crate.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
allowed-cross-crate.stderr
out-of-order.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
out-of-order.stderr
overlap-projection.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
overlap-projection.stderr
projection.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
projection.stderr
specialization-feature-gate-default.rs
specialization-feature-gate-default.stderr Bless tests 2024-01-13 12:46:58 -05:00
specialization-no-default.rs
specialization-no-default.stderr
specialization-trait-item-not-implemented-rpass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
specialization-trait-item-not-implemented-rpass.stderr
specialization-trait-item-not-implemented.rs
specialization-trait-item-not-implemented.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
specialization-trait-not-implemented.rs Do not assemble candidates for default impls 2024-02-13 19:20:13 +00:00
specialization-trait-not-implemented.stderr Do not assemble candidates for default impls 2024-02-13 19:20:13 +00:00
specialization-wfcheck.rs
specialization-wfcheck.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
validation.rs Do not assemble candidates for default impls 2024-02-13 19:20:13 +00:00
validation.stderr Provide structured suggestion for #![feature(foo)] 2024-03-18 16:08:58 +00:00