diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
commit | a4b7ed7a42c716ab9f05e351f003d589124fd55d (patch) | |
tree | b620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/regions/regions-infer-paramd-indirect.rs | |
parent | Adding upstream version 1.67.1+dfsg1. (diff) | |
download | rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip |
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/regions/regions-infer-paramd-indirect.rs')
-rw-r--r-- | tests/ui/regions/regions-infer-paramd-indirect.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/regions/regions-infer-paramd-indirect.rs b/tests/ui/regions/regions-infer-paramd-indirect.rs new file mode 100644 index 000000000..978c84e53 --- /dev/null +++ b/tests/ui/regions/regions-infer-paramd-indirect.rs @@ -0,0 +1,27 @@ +// Check that we correctly infer that b and c must be region +// parameterized because they reference a which requires a region. + +type A<'a> = &'a isize; +type B<'a> = Box<A<'a>>; + +struct C<'a> { + f: Box<B<'a>> +} + +trait SetF<'a> { + fn set_f_ok(&mut self, b: Box<B<'a>>); + fn set_f_bad(&mut self, b: Box<B>); +} + +impl<'a> SetF<'a> for C<'a> { + fn set_f_ok(&mut self, b: Box<B<'a>>) { + self.f = b; + } + + fn set_f_bad(&mut self, b: Box<B>) { + self.f = b; + //~^ ERROR lifetime may not live long enough + } +} + +fn main() {} |