summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/into-convert.stderr
blob: 704b280a985f494900d3b00dbebe48cf8996d503 (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
error[E0308]: mismatched types
  --> $DIR/into-convert.rs:6:16
   |
LL |     let x: A = B;
   |            -   ^ expected `A`, found `B`
   |            |
   |            expected due to this
   |
help: call `Into::into` on this expression to convert `B` into `A`
   |
LL |     let x: A = B.into();
   |                 +++++++

error[E0308]: mismatched types
  --> $DIR/into-convert.rs:10:24
   |
LL |     let y: Arc<Path> = PathBuf::new();
   |            ---------   ^^^^^^^^^^^^^^ expected `Arc<Path>`, found `PathBuf`
   |            |
   |            expected due to this
   |
   = note: expected struct `Arc<Path>`
              found struct `PathBuf`
help: call `Into::into` on this expression to convert `PathBuf` into `Arc<Path>`
   |
LL |     let y: Arc<Path> = PathBuf::new().into();
   |                                      +++++++

error[E0308]: mismatched types
  --> $DIR/into-convert.rs:14:24
   |
LL |     let z: AtomicU32 = 1;
   |            ---------   ^ expected `AtomicU32`, found integer
   |            |
   |            expected due to this
   |
help: call `Into::into` on this expression to convert `{integer}` into `AtomicU32`
   |
LL |     let z: AtomicU32 = 1.into();
   |                         +++++++

error: aborting due to 3 previous errors

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