rust/tests/ui/generic-const-items
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
..
associated-const-equality.rs Propagate the resolved type of assoc const bindings via query feeding 2024-02-18 10:29:22 +01:00
basic.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
compare-impl-item.rs
compare-impl-item.stderr
const-trait-impl.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
duplicate-where-clause.rs
duplicate-where-clause.stderr
elided-lifetimes.rs
elided-lifetimes.stderr Provide structured suggestion for #![feature(foo)] 2024-03-18 16:08:58 +00:00
evaluatable-bounds.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
evaluatable-bounds.unconstrained.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
feature-gate-generic_const_items.rs
feature-gate-generic_const_items.stderr Bless tests 2024-01-13 12:46:58 -05:00
inference-failure.rs
inference-failure.stderr Reorder fullfillment errors to keep more interesting ones first 2023-10-04 02:04:14 +00:00
misplaced-where-clause.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
misplaced-where-clause.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
misplaced-where-clause.stderr
parameter-defaults.rs Avoid silencing relevant follow-up errors 2024-01-09 21:08:16 +00:00
parameter-defaults.stderr Remove a has_errors check that does not prevent follow up error noise 2024-01-31 16:51:42 +00:00
recursive.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
reference-outlives-referent.rs Don't crash when reporting nice region errors for generic const items 2023-08-12 15:34:28 +02:00
reference-outlives-referent.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
trivially-unsatisfied-bounds-0.rs Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
trivially-unsatisfied-bounds-0.stderr Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
trivially-unsatisfied-bounds-1.rs
trivially-unsatisfied-bounds-1.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
unsatisfied-bounds.rs
unsatisfied-bounds.stderr Point out the actual mismatch error 2023-10-02 23:14:29 +00:00
unsatisfied-evaluatable-bounds.rs
unsatisfied-evaluatable-bounds.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
unsatisfied-outlives-bounds.rs
unsatisfied-outlives-bounds.stderr