Rollup merge of #97271 - JohnTitor:issue-91949, r=compiler-errors
Add regression test for #91949 Closes #91949 This needs `build-fail` because the original bug only appeared with `cargo build`. r? `@compiler-errors`
This commit is contained in:
commit
6d366f15d4
30
src/test/ui/traits/issue-91949-hangs-on-recursion.rs
Normal file
30
src/test/ui/traits/issue-91949-hangs-on-recursion.rs
Normal file
@ -0,0 +1,30 @@
|
||||
// build-fail
|
||||
// error-pattern: overflow evaluating the requirement `(): Sized`
|
||||
// error-pattern: function cannot return without recursing
|
||||
|
||||
// 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());
|
||||
}
|
25
src/test/ui/traits/issue-91949-hangs-on-recursion.stderr
Normal file
25
src/test/ui/traits/issue-91949-hangs-on-recursion.stderr
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user