rust/tests/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs
2024-03-11 19:42:04 +00:00

8 lines
221 B
Rust

#![feature(generic_const_exprs)]
// library portion of testing that `impl Trait<{ expr }>` doesnt
// ice because of a `DefKind::TyParam` parent
pub fn foo<const N: usize>(foo: impl Into<[(); N + 1]>) {
foo.into();
}