about summary refs log tree commit diff
path: root/src/test/ui/methods/method-call-lifetime-args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/methods/method-call-lifetime-args.rs')
-rw-r--r--src/test/ui/methods/method-call-lifetime-args.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/methods/method-call-lifetime-args.rs b/src/test/ui/methods/method-call-lifetime-args.rs
deleted file mode 100644
index 3292e9fcdf8..00000000000
--- a/src/test/ui/methods/method-call-lifetime-args.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-struct S;
-
-impl S {
-    fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
-    fn late_implicit(self, _: &u8, _: &u8) {}
-}
-
-fn ufcs() {
-    S::late::<'static>(S, &0, &0);
-    //~^ ERROR cannot specify lifetime arguments explicitly
-    S::late_implicit::<'static>(S, &0, &0);
-    //~^ ERROR cannot specify lifetime arguments explicitly
-}
-
-fn main() {}