File: str-array-assignment.stderr

package info (click to toggle)
rustc-web 1.70.0%2Bdfsg1-7~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,517,036 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,006; asm: 2,856
file content (45 lines) | stat: -rw-r--r-- 1,563 bytes parent folder | download | duplicates (6)
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
error[E0308]: `if` and `else` have incompatible types
  --> $DIR/str-array-assignment.rs:3:37
   |
LL |   let t = if true { s[..2] } else { s };
   |                     ------          ^ expected `str`, found `&str`
   |                     |
   |                     expected because of this

error[E0308]: mismatched types
  --> $DIR/str-array-assignment.rs:5:27
   |
LL |   let u: &str = if true { s[..2] } else { s };
   |                           ^^^^^^
   |                           |
   |                           expected `&str`, found `str`
   |                           help: consider borrowing here: `&s[..2]`

error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> $DIR/str-array-assignment.rs:7:7
   |
LL |   let v = s[..2];
   |       ^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: all local variables must have a statically known size
   = help: unsized locals are gated as an unstable feature
help: consider borrowing here
   |
LL |   let v = &s[..2];
   |           +

error[E0308]: mismatched types
  --> $DIR/str-array-assignment.rs:9:17
   |
LL |   let w: &str = s[..2];
   |          ----   ^^^^^^
   |          |      |
   |          |      expected `&str`, found `str`
   |          |      help: consider borrowing here: `&s[..2]`
   |          expected due to this

error: aborting due to 4 previous errors

Some errors have detailed explanations: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.