*sprinkles some dust everywhere*

This commit is contained in:
Ellen 2021-08-06 14:55:53 +01:00
parent 2c004a2287
commit 9a5fc0d911

View file

@ -1,7 +1,8 @@
#![feature(const_generics, const_evaluatable_checked)]
#![allow(incomplete_features)]
// library portion of testing that `impl Trait<{ expr }>` doesnt ice because of a `DefKind::TyParam` parent
// 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();
}