diff options
| author | Ellen <supbscripter@gmail.com> | 2021-08-06 14:55:53 +0100 |
|---|---|---|
| committer | Ellen <supbscripter@gmail.com> | 2021-08-06 14:55:53 +0100 |
| commit | 9a5fc0d9110108e79e5b0dc5c6dfb5392a74bb13 (patch) | |
| tree | 3c296edf2127560bcc3d95aa75514cb4aa81a332 | |
| parent | 2c004a228751aed8a271e16d74c96d8037b6e655 (diff) | |
| download | rust-9a5fc0d9110108e79e5b0dc5c6dfb5392a74bb13.tar.gz rust-9a5fc0d9110108e79e5b0dc5c6dfb5392a74bb13.zip | |
*sprinkles some dust everywhere*
| -rw-r--r-- | src/test/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs b/src/test/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs index 83e0c5566be..0d03f56854a 100644 --- a/src/test/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs +++ b/src/test/ui/const-generics/auxiliary/generics_of_parent_impl_trait.rs @@ -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(); } |
