Delay bug to prevent ICE in MIR borrowck

This commit is contained in:
Yuki Okushi 2020-01-07 16:51:34 +09:00
parent ed6468da16
commit 4fce9c27fb
3 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,7 @@
struct Bug {
A: [(); { *"" }.len()],
//~^ ERROR: cannot move a value of type str
//~| ERROR: cannot move out of a shared reference
}
fn main() {}

View file

@ -0,0 +1,16 @@
error[E0161]: cannot move a value of type str: the size of str cannot be statically determined
--> $DIR/issue-67947.rs:2:13
|
LL | A: [(); { *"" }.len()],
| ^^^^^^^
error[E0507]: cannot move out of a shared reference
--> $DIR/issue-67947.rs:2:15
|
LL | A: [(); { *"" }.len()],
| ^^^ move occurs because value has type `str`, which does not implement the `Copy` trait
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0161, E0507.
For more information about an error, try `rustc --explain E0161`.