forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissue-71676-1.stderr
63 lines (58 loc) · 1.75 KB
/
issue-71676-1.stderr
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
error[E0308]: mismatched types
--> $DIR/issue-71676-1.rs:43:24
|
LL | let _: *const u8 = &a;
| --------- ^^ expected `*const u8`, found `&Emm`
| |
| expected due to this
|
= note: expected raw pointer `*const u8`
found reference `&Emm`
help: consider dereferencing
|
LL | let _: *const u8 = &***a;
| +++
error[E0308]: mismatched types
--> $DIR/issue-71676-1.rs:46:22
|
LL | let _: *mut u8 = &a;
| ------- ^^ types differ in mutability
| |
| expected due to this
|
= note: expected raw pointer `*mut u8`
found reference `&Emm`
help: consider dereferencing
|
LL | let _: *mut u8 = &mut ***a;
| +++++++
error[E0308]: mismatched types
--> $DIR/issue-71676-1.rs:49:24
|
LL | let _: *const u8 = &mut a;
| --------- ^^^^^^ expected `*const u8`, found `&mut Emm`
| |
| expected due to this
|
= note: expected raw pointer `*const u8`
found mutable reference `&mut Emm`
help: consider dereferencing
|
LL | let _: *const u8 = &***a;
| ~~~
error[E0308]: mismatched types
--> $DIR/issue-71676-1.rs:52:22
|
LL | let _: *mut u8 = &mut a;
| ------- ^^^^^^ expected `*mut u8`, found `&mut Emm`
| |
| expected due to this
|
= note: expected raw pointer `*mut u8`
found mutable reference `&mut Emm`
help: consider dereferencing
|
LL | let _: *mut u8 = &mut ***a;
| +++
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0308`.