File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 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 = {
44 const Y : & ' static [ u8 ] = b"" ;
55 & X ( * Y )
66 //~^ ERROR E0277
7+ //~| ERROR E0277
78} ;
89
910fn main ( ) { }
Original file line number Diff line number Diff line change @@ -8,6 +8,20 @@ LL | &X(*Y)
88 = note: all function arguments must have a statically known size
99 = help: unsized fn params are gated as an unstable feature
1010
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
1226
1327For more information about this error, try `rustc --explain E0277`.
You can’t perform that action at this time.
0 commit comments