mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
33 lines
796 B
Rust
33 lines
796 B
Rust
// build-fail
|
|
// compile-flags: -Zinline-mir=no
|
|
// error-pattern: overflow evaluating the requirement `(): Sized`
|
|
// error-pattern: function cannot return without recursing
|
|
// normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
|
|
|
|
// Regression test for #91949.
|
|
// This hanged *forever* on 1.56, fixed by #90423.
|
|
|
|
#![recursion_limit = "256"]
|
|
|
|
struct Wrapped<T>(T);
|
|
|
|
struct IteratorOfWrapped<T, I: Iterator<Item = T>>(I);
|
|
|
|
impl<T, I: Iterator<Item = T>> Iterator for IteratorOfWrapped<T, I> {
|
|
type Item = Wrapped<T>;
|
|
fn next(&mut self) -> Option<Wrapped<T>> {
|
|
self.0.next().map(Wrapped)
|
|
}
|
|
}
|
|
|
|
fn recurse<T>(elements: T) -> Vec<char>
|
|
where
|
|
T: Iterator<Item = ()>,
|
|
{
|
|
recurse(IteratorOfWrapped(elements).map(|t| t.0))
|
|
}
|
|
|
|
fn main() {
|
|
recurse(std::iter::empty());
|
|
}
|