mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
34 lines
882 B
Rust
34 lines
882 B
Rust
//@ build-fail
|
|
//@ compile-flags: -Zinline-mir=no
|
|
//@ error-pattern: overflow evaluating the requirement `<std::iter::Empty<()> as Iterator>::Item == ()`
|
|
//@ error-pattern: function cannot return without recursing
|
|
//@ normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
|
|
//@ ignore-compare-mode-next-solver (hangs)
|
|
|
|
// 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());
|
|
}
|