summaryrefslogtreecommitdiffstats
path: root/tests/ui/lifetimes/issue-105675.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lifetimes/issue-105675.rs')
-rw-r--r--tests/ui/lifetimes/issue-105675.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/lifetimes/issue-105675.rs b/tests/ui/lifetimes/issue-105675.rs
new file mode 100644
index 000000000..58d8be8b6
--- /dev/null
+++ b/tests/ui/lifetimes/issue-105675.rs
@@ -0,0 +1,14 @@
+fn thing(x: impl FnOnce(&u32, &u32, u32)) {}
+
+fn main() {
+ let f = | _ , y: &u32 , z | ();
+ thing(f);
+ //~^ ERROR mismatched types
+ //~^^ ERROR mismatched types
+ let f = | x, y: _ , z: u32 | ();
+ thing(f);
+ //~^ ERROR mismatched types
+ //~^^ ERROR mismatched types
+ //~^^^ ERROR implementation of `FnOnce` is not general enough
+ //~^^^^ ERROR implementation of `FnOnce` is not general enough
+}