about summary refs log tree commit diff
path: root/tests/ui/impl-trait/method/method-resolution.rs
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2025-09-24 10:08:00 +0200
committerlcnr <rust@lcnr.de>2025-09-26 16:33:15 +0200
commiteebf871feaca10886f80a76a36b3771e960c047e (patch)
tree46b7109fabb01dfc5d38fd73f21ce7f145b9d33c /tests/ui/impl-trait/method/method-resolution.rs
parent148fd9ad3c434c26a952e01e37c35aa26cb8315c (diff)
downloadrust-eebf871feaca10886f80a76a36b3771e960c047e.tar.gz
rust-eebf871feaca10886f80a76a36b3771e960c047e.zip
move tests
Diffstat (limited to 'tests/ui/impl-trait/method/method-resolution.rs')
-rw-r--r--tests/ui/impl-trait/method/method-resolution.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/method/method-resolution.rs b/tests/ui/impl-trait/method/method-resolution.rs
new file mode 100644
index 00000000000..60fbacd8646
--- /dev/null
+++ b/tests/ui/impl-trait/method/method-resolution.rs
@@ -0,0 +1,26 @@
+//! Since there is only one possible `bar` method, we invoke it and subsequently
+//! constrain `foo`'s RPIT to `u32`.
+
+//@ revisions: current next
+//@[next] compile-flags: -Znext-solver
+//@ check-pass
+
+trait Trait {}
+
+impl Trait for u32 {}
+
+struct Bar<T>(T);
+
+impl Bar<u32> {
+    fn bar(self) {}
+}
+
+fn foo(x: bool) -> Bar<impl Sized> {
+    if x {
+        let x = foo(false);
+        x.bar();
+    }
+    todo!()
+}
+
+fn main() {}