about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-trait/opaque-and-lifetime-mismatch.stderr
blob: 24896151bedb896ab90e363bd65d0de03a384f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
error[E0106]: missing lifetime specifier
  --> $DIR/opaque-and-lifetime-mismatch.rs:4:24
   |
LL |     fn bar() -> Wrapper<impl Sized>;
   |                        ^ expected named lifetime parameter
   |
   = help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
   |
LL |     fn bar() -> Wrapper<'static, impl Sized>;
   |                         ++++++++

error[E0106]: missing lifetime specifier
  --> $DIR/opaque-and-lifetime-mismatch.rs:16:24
   |
LL |     fn foo() -> Wrapper<impl Sized>;
   |                        ^ expected named lifetime parameter
   |
   = help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
   |
LL |     fn foo() -> Wrapper<'static, impl Sized>;
   |                         ++++++++

error[E0106]: missing lifetime specifier
  --> $DIR/opaque-and-lifetime-mismatch.rs:22:24
   |
LL |     fn foo() -> Wrapper<impl Sized> {
   |                        ^ expected named lifetime parameter
   |
   = help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
   |
LL |     fn foo() -> Wrapper<'static, impl Sized> {
   |                         ++++++++

error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
  --> $DIR/opaque-and-lifetime-mismatch.rs:4:17
   |
LL |     fn bar() -> Wrapper<impl Sized>;
   |                 ^^^^^^^ ---------- help: remove the unnecessary generic argument
   |                 |
   |                 expected 0 generic arguments
   |
note: struct defined here, with 0 generic parameters
  --> $DIR/opaque-and-lifetime-mismatch.rs:1:8
   |
LL | struct Wrapper<'rom>(&'rom ());
   |        ^^^^^^^

error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
  --> $DIR/opaque-and-lifetime-mismatch.rs:16:17
   |
LL |     fn foo() -> Wrapper<impl Sized>;
   |                 ^^^^^^^ ---------- help: remove the unnecessary generic argument
   |                 |
   |                 expected 0 generic arguments
   |
note: struct defined here, with 0 generic parameters
  --> $DIR/opaque-and-lifetime-mismatch.rs:1:8
   |
LL | struct Wrapper<'rom>(&'rom ());
   |        ^^^^^^^

error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
  --> $DIR/opaque-and-lifetime-mismatch.rs:22:17
   |
LL |     fn foo() -> Wrapper<impl Sized> {
   |                 ^^^^^^^ ---------- help: remove the unnecessary generic argument
   |                 |
   |                 expected 0 generic arguments
   |
note: struct defined here, with 0 generic parameters
  --> $DIR/opaque-and-lifetime-mismatch.rs:1:8
   |
LL | struct Wrapper<'rom>(&'rom ());
   |        ^^^^^^^

error: aborting due to 6 previous errors

Some errors have detailed explanations: E0106, E0107.
For more information about an error, try `rustc --explain E0106`.