about summary refs log tree commit diff
path: root/tests/ui/const-generics/issues/issue-73727-static-reference-array-const-param.min.stderr
AgeCommit message (Collapse)AuthorLines
2024-09-29fix(hir_analysis/wfcheck): don't leak {type error}Barrett Ray-1/+1
avoid `{type error}` being leaked in user-facing messages, particularly when using the `adt_const_params` feature
2024-07-17Split part of `adt_const_params` into `unsized_const_params`Boxy-0/+4
2024-03-18Provide structured suggestion for `#![feature(foo)]`Esteban Küber-1/+4
``` 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.
2023-11-24Show number in error message even for one errorNilstrieb-1/+1
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-09-28make adt_const_params feature suggestion more consistent with others and ↵asquared31415-1/+1
only suggest it when the type can probably work
2023-01-11Move /src/test to /testsAlbert Larsan-0/+11