]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-10412.stderr
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
[rust.git] / src / test / ui / issues / issue-10412.stderr
1 error: lifetimes cannot use keyword names
2   --> $DIR/issue-10412.rs:1:20
3    |
4 LL | trait Serializable<'self, T> {
5    |                    ^^^^^
6
7 error: lifetimes cannot use keyword names
8   --> $DIR/issue-10412.rs:2:25
9    |
10 LL |     fn serialize(val : &'self T) -> Vec<u8>;
11    |                         ^^^^^
12
13 error: lifetimes cannot use keyword names
14   --> $DIR/issue-10412.rs:3:38
15    |
16 LL |     fn deserialize(repr : &[u8]) -> &'self T;
17    |                                      ^^^^^
18
19 error: lifetimes cannot use keyword names
20   --> $DIR/issue-10412.rs:6:6
21    |
22 LL | impl<'self> Serializable<str> for &'self str {
23    |      ^^^^^
24
25 error: lifetimes cannot use keyword names
26   --> $DIR/issue-10412.rs:6:36
27    |
28 LL | impl<'self> Serializable<str> for &'self str {
29    |                                    ^^^^^
30
31 error: lifetimes cannot use keyword names
32   --> $DIR/issue-10412.rs:10:25
33    |
34 LL |     fn serialize(val : &'self str) -> Vec<u8> {
35    |                         ^^^^^
36
37 error: lifetimes cannot use keyword names
38   --> $DIR/issue-10412.rs:13:37
39    |
40 LL |     fn deserialize(repr: &[u8]) -> &'self str {
41    |                                     ^^^^^
42
43 error[E0726]: implicit elided lifetime not allowed here
44   --> $DIR/issue-10412.rs:6:13
45    |
46 LL | impl<'self> Serializable<str> for &'self str {
47    |             ^^^^^^^^^^^^^^^^^ help: indicate the anonymous lifetime: `Serializable<'_, str>`
48    |
49    = note: assuming a `'static` lifetime...
50
51 error[E0277]: the size for values of type `str` cannot be known at compilation time
52   --> $DIR/issue-10412.rs:6:13
53    |
54 LL | impl<'self> Serializable<str> for &'self str {
55    |             ^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
56    |
57    = help: the trait `Sized` is not implemented for `str`
58 note: required by a bound in `Serializable`
59   --> $DIR/issue-10412.rs:1:27
60    |
61 LL | trait Serializable<'self, T> {
62    |                           ^ required by this bound in `Serializable`
63 help: consider relaxing the implicit `Sized` restriction
64    |
65 LL | trait Serializable<'self, T: ?Sized> {
66    |                            ++++++++
67
68 error: aborting due to 9 previous errors
69
70 Some errors have detailed explanations: E0277, E0726.
71 For more information about an error, try `rustc --explain E0277`.