Unstably constify impl IntoIterator for I: ~const Iterator

This commit is contained in:
mbartlett21 2022-03-15 06:07:18 +00:00
parent 984204814e
commit 91eda96e38

View File

@ -267,8 +267,9 @@ pub trait IntoIterator {
fn into_iter(self) -> Self::IntoIter;
}
#[rustc_const_unstable(feature = "const_intoiterator_identity", issue = "90603")]
#[stable(feature = "rust1", since = "1.0.0")]
impl<I: Iterator> IntoIterator for I {
impl<I: ~const Iterator> const IntoIterator for I {
type Item = I::Item;
type IntoIter = I;