File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ pub static Y: &'static X = {
4
4
const Y : & ' static [ u8 ] = b"" ;
5
5
& X ( * Y )
6
6
//~^ ERROR E0277
7
+ //~| ERROR E0277
7
8
} ;
8
9
9
10
fn main ( ) { }
Original file line number Diff line number Diff line change @@ -8,6 +8,20 @@ LL | &X(*Y)
8
8
= note: all function arguments must have a statically known size
9
9
= help: unsized fn params are gated as an unstable feature
10
10
11
- error: aborting due to previous error
11
+ error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
12
+ --> $DIR/issue-30355.rs:5:6
13
+ |
14
+ LL | &X(*Y)
15
+ | ^ doesn't have a size known at compile-time
16
+ |
17
+ = help: within `X`, the trait `Sized` is not implemented for `[u8]`
18
+ note: required because it appears within the type `X`
19
+ --> $DIR/issue-30355.rs:1:12
20
+ |
21
+ LL | pub struct X([u8]);
22
+ | ^
23
+ = note: the return type of a function must have a statically known size
24
+
25
+ error: aborting due to 2 previous errors
12
26
13
27
For more information about this error, try `rustc --explain E0277`.
You can’t perform that action at this time.
0 commit comments