summaryrefslogtreecommitdiffstats
path: root/tests/ui/methods/method-call-lifetime-args-lint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/methods/method-call-lifetime-args-lint.rs')
-rw-r--r--tests/ui/methods/method-call-lifetime-args-lint.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/methods/method-call-lifetime-args-lint.rs b/tests/ui/methods/method-call-lifetime-args-lint.rs
new file mode 100644
index 000000000..14729e1e2
--- /dev/null
+++ b/tests/ui/methods/method-call-lifetime-args-lint.rs
@@ -0,0 +1,21 @@
+#![deny(late_bound_lifetime_arguments)]
+#![allow(unused)]
+
+struct S;
+
+impl S {
+ fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
+ fn late_implicit(self, _: &u8, _: &u8) {}
+}
+
+fn method_call() {
+ S.late::<'static>(&0, &0);
+ //~^ ERROR cannot specify lifetime arguments explicitly
+ //~| WARN this was previously accepted
+
+ S.late_implicit::<'static>(&0, &0);
+ //~^ ERROR cannot specify lifetime arguments explicitly
+ //~| WARN this was previously accepted
+}
+
+fn main() {}