summary refs log tree commit diff
path: root/src/test/ui/suggestions/str-array-assignment.stderr
blob: 76db882742a01a331e9a0cfe01ab3294ff44d344 (plain)
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
46
47
48
error[E0308]: if and else have incompatible types
  --> $DIR/str-array-assignment.rs:13:11
   |
LL |   let t = if true { s[..2] } else { s };
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected str, found &str
   |
   = note: expected type `str`
              found type `&str`

error[E0308]: mismatched types
  --> $DIR/str-array-assignment.rs:15:27
   |
LL | fn main() {
   |           - expected `()` because of default return type
...
LL |   let u: &str = if true { s[..2] } else { s };
   |                           ^^^^^^ expected &str, found str
   |
   = note: expected type `&str`
              found type `str`

error[E0277]: the trait bound `str: std::marker::Sized` is not satisfied
  --> $DIR/str-array-assignment.rs:17:7
   |
LL |   let v = s[..2];
   |       ^   ------ help: consider borrowing here: `&s[..2]`
   |       |
   |       `str` does not have a constant size known at compile-time
   |
   = help: the trait `std::marker::Sized` is not implemented for `str`
   = note: all local variables must have a statically known size

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

error: aborting due to 4 previous errors

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