mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
eea560494c
Bless tests and show an introduced unsoundness related to exits<'a> { forall<'b> { 'a == 'b } }. We now resolve the var ?a in U0 to the placeholder !b in U1.
15 lines
416 B
Rust
15 lines
416 B
Rust
// Regression test for #87549.
|
|
// incremental
|
|
|
|
pub struct Table<T, const N: usize>([Option<T>; N]);
|
|
|
|
impl<'a, T, const N: usize> IntoIterator for &'a Table<T, N> {
|
|
type IntoIter = std::iter::Flatten<std::slice::Iter<'a, T>>; //~ ERROR `&'a T` is not an iterator
|
|
type Item = &'a T;
|
|
|
|
fn into_iter(self) -> Self::IntoIter { //~ ERROR `&'a T` is not an iterator
|
|
unimplemented!()
|
|
}
|
|
}
|
|
fn main() {}
|