rust/tests/ui/generic-const-items/wfcheck_err_leak_issue_118179.rs
Barrett Ray c5598d6a9e fix(hir_analysis/wfcheck): don't leak {type error}
avoid `{type error}` being leaked in user-facing messages,
particularly when using the `adt_const_params` feature
2024-09-29 23:40:43 -05:00

8 lines
245 B
Rust

//! Regression test for #118179: `adt_const_params` feature shouldn't leak
//! `{type error}` in error messages.
struct G<T, const N: Vec<T>>(T);
//~^ ERROR the type of const parameters must not depend on other generic parameters
fn main() {}