]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-10412.stderr
New upstream version 1.44.1+dfsg1
[rustc.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 error[E0277]: the size for values of type `str` cannot be known at compilation time
50 --> $DIR/issue-10412.rs:6:13
51 |
52 LL | trait Serializable<'self, T> {
53 | - required by this bound in `Serializable`
54 ...
55 LL | impl<'self> Serializable<str> for &'self str {
56 | ^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
57 |
58 = help: the trait `std::marker::Sized` is not implemented for `str`
59 = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
60
61 error: aborting due to 9 previous errors
62
63 For more information about this error, try `rustc --explain E0277`.