rust/tests/ui/dst/dst-bad-coerce3.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0597]: `f1` does not live long enough
--> $DIR/dst-bad-coerce3.rs:16:32
2018-08-08 12:28:26 +00:00
|
LL | fn baz<'a>() {
| -- lifetime `'a` defined here
2023-01-15 03:06:44 +00:00
LL | // With a vec of ints.
LL | let f1 = Fat { ptr: [1, 2, 3] };
| -- binding `f1` declared here
2019-03-09 12:03:44 +00:00
LL | let f2: &Fat<[isize; 3]> = &f1;
| ^^^ borrowed value does not live long enough
LL | let f3: &'a Fat<[isize]> = f2;
| ---------------- type annotation requires that `f1` is borrowed for `'a`
2018-08-08 12:28:26 +00:00
...
LL | }
| - `f1` dropped here while still borrowed
2018-08-08 12:28:26 +00:00
error[E0597]: `f1` does not live long enough
--> $DIR/dst-bad-coerce3.rs:21:25
2018-08-08 12:28:26 +00:00
|
LL | fn baz<'a>() {
| -- lifetime `'a` defined here
...
2023-01-15 03:06:44 +00:00
LL | let f1 = Fat { ptr: Foo };
| -- binding `f1` declared here
2019-03-09 12:03:44 +00:00
LL | let f2: &Fat<Foo> = &f1;
| ^^^ borrowed value does not live long enough
2019-05-28 18:46:13 +00:00
LL | let f3: &'a Fat<dyn Bar> = f2;
| ---------------- type annotation requires that `f1` is borrowed for `'a`
2018-08-08 12:28:26 +00:00
...
LL | }
| - `f1` dropped here while still borrowed
2018-08-08 12:28:26 +00:00
error[E0597]: `f1` does not live long enough
--> $DIR/dst-bad-coerce3.rs:26:30
2018-08-08 12:28:26 +00:00
|
LL | fn baz<'a>() {
| -- lifetime `'a` defined here
...
2023-01-15 03:06:44 +00:00
LL | let f1 = ([1, 2, 3],);
| -- binding `f1` declared here
2019-03-09 12:03:44 +00:00
LL | let f2: &([isize; 3],) = &f1;
| ^^^ borrowed value does not live long enough
LL | let f3: &'a ([isize],) = f2;
| -------------- type annotation requires that `f1` is borrowed for `'a`
2018-08-08 12:28:26 +00:00
...
LL | }
| - `f1` dropped here while still borrowed
2018-08-08 12:28:26 +00:00
error[E0597]: `f1` does not live long enough
--> $DIR/dst-bad-coerce3.rs:31:23
2018-08-08 12:28:26 +00:00
|
LL | fn baz<'a>() {
| -- lifetime `'a` defined here
...
2023-01-15 03:06:44 +00:00
LL | let f1 = (Foo,);
| -- binding `f1` declared here
2019-03-09 12:03:44 +00:00
LL | let f2: &(Foo,) = &f1;
| ^^^ borrowed value does not live long enough
2019-05-28 18:46:13 +00:00
LL | let f3: &'a (dyn Bar,) = f2;
| -------------- type annotation requires that `f1` is borrowed for `'a`
2018-08-08 12:28:26 +00:00
LL | }
| - `f1` dropped here while still borrowed
2018-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0597`.