diff options
| author | lcnr <rust@lcnr.de> | 2025-09-24 10:08:00 +0200 |
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2025-09-26 16:33:15 +0200 |
| commit | eebf871feaca10886f80a76a36b3771e960c047e (patch) | |
| tree | 46b7109fabb01dfc5d38fd73f21ce7f145b9d33c /tests/ui/impl-trait/method/method-resolution4.rs | |
| parent | 148fd9ad3c434c26a952e01e37c35aa26cb8315c (diff) | |
| download | rust-eebf871feaca10886f80a76a36b3771e960c047e.tar.gz rust-eebf871feaca10886f80a76a36b3771e960c047e.zip | |
move tests
Diffstat (limited to 'tests/ui/impl-trait/method/method-resolution4.rs')
| -rw-r--r-- | tests/ui/impl-trait/method/method-resolution4.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/method/method-resolution4.rs b/tests/ui/impl-trait/method/method-resolution4.rs new file mode 100644 index 00000000000..f90a9309cda --- /dev/null +++ b/tests/ui/impl-trait/method/method-resolution4.rs @@ -0,0 +1,18 @@ +//! The recursive method call yields the opaque type. The +//! `next` method call then constrains the hidden type to `&mut _` +//! because `next` takes `&mut self`. We never resolve the inference +//! variable, but get a type mismatch when comparing `&mut _` with +//! `std::iter::Empty`. + +//@ revisions: current next +//@[next] compile-flags: -Znext-solver +//@ check-pass + +fn foo(b: bool) -> impl Iterator<Item = ()> { + if b { + foo(false).next().unwrap(); + } + std::iter::empty() +} + +fn main() {} |
