summary refs log tree commit diff
path: root/src/test/ui/unsized5.stderr
blob: a7539b0672afedcf72236ca0f2d1d59bbb9f8bb7 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
error[E0277]: the size for values of type `X` cannot be known at compilation time
  --> $DIR/unsized5.rs:4:9
   |
LL | struct S1<X: ?Sized> {
   |           - this type parameter needs to be `Sized`
LL |     f1: X,
   |         ^ doesn't have a size known at compile-time
   |
   = note: only the last field of a struct may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     f1: &X,
   |         ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     f1: Box<X>,
   |         ^^^^ ^

error[E0277]: the size for values of type `X` cannot be known at compilation time
  --> $DIR/unsized5.rs:10:8
   |
LL | struct S2<X: ?Sized> {
   |           - this type parameter needs to be `Sized`
LL |     f: isize,
LL |     g: X,
   |        ^ doesn't have a size known at compile-time
   |
   = note: only the last field of a struct may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     g: &X,
   |        ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     g: Box<X>,
   |        ^^^^ ^

error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> $DIR/unsized5.rs:15:8
   |
LL |     f: str,
   |        ^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: only the last field of a struct may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     f: &str,
   |        ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     f: Box<str>,
   |        ^^^^   ^

error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
  --> $DIR/unsized5.rs:20:8
   |
LL |     f: [u8],
   |        ^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `[u8]`
   = note: only the last field of a struct may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     f: &[u8],
   |        ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     f: Box<[u8]>,
   |        ^^^^    ^

error[E0277]: the size for values of type `X` cannot be known at compilation time
  --> $DIR/unsized5.rs:25:8
   |
LL | enum E<X: ?Sized> {
   |        - this type parameter needs to be `Sized`
LL |     V1(X, isize),
   |        ^ doesn't have a size known at compile-time
   |
   = note: no field of an enum variant may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     V1(&X, isize),
   |        ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     V1(Box<X>, isize),
   |        ^^^^ ^

error[E0277]: the size for values of type `X` cannot be known at compilation time
  --> $DIR/unsized5.rs:29:12
   |
LL | enum F<X: ?Sized> {
   |        - this type parameter needs to be `Sized`
LL |     V2{f1: X, f: isize},
   |            ^ doesn't have a size known at compile-time
   |
   = note: no field of an enum variant may have a dynamically sized type
   = help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
   |
LL |     V2{f1: &X, f: isize},
   |            ^
help: the `Box` type always has a statically known size and allocates its contents in the heap
   |
LL |     V2{f1: Box<X>, f: isize},
   |            ^^^^ ^

error: aborting due to 6 previous errors

For more information about this error, try `rustc --explain E0277`.