blob: 9b007d338d1da8631500906d06ac49599c33a2a9 [file]
//! Regression test for https://github.com/rust-lang/rust/issues/153198
#![feature(min_generic_const_args)]
#![allow(incomplete_features, rust_2021_compatibility)]
trait Trait<T> {}
impl dyn Trait<{_}> {} //~ ERROR: the placeholder `_` is not allowed within types on item signatures
fn main() {}