diff options
Diffstat (limited to 'tests/ui/methods/method-call-lifetime-args.rs')
-rw-r--r-- | tests/ui/methods/method-call-lifetime-args.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/methods/method-call-lifetime-args.rs b/tests/ui/methods/method-call-lifetime-args.rs new file mode 100644 index 000000000..3292e9fcd --- /dev/null +++ b/tests/ui/methods/method-call-lifetime-args.rs @@ -0,0 +1,15 @@ +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() {} |