Skip to content

Commit bb4c551

Browse files
committed
bless ui test
1 parent 77297e5 commit bb4c551

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

src/test/ui/unsized/issue-30355.rs

+1
Original file line numberDiff line numberDiff 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

910
fn main() {}

src/test/ui/unsized/issue-30355.stderr

+15-1
Original file line numberDiff line numberDiff 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

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

0 commit comments

Comments
 (0)