]> git.proxmox.com Git - rustc.git/blame - src/test/ui/vector-cast-weirdness.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / ui / vector-cast-weirdness.rs
CommitLineData
1a4d82fc
JJ
1// Issue #14893. Tests that casts from vectors don't behave strangely in the
2// presence of the `_` type shorthand notation.
c34b1796
AL
3// Update: after a change to the way casts are done, we have more type information
4// around and so the errors here are no longer exactly the same.
1a4d82fc
JJ
5
6struct X {
7 y: [u8; 2],
8}
9
10fn main() {
11 let x1 = X { y: [0, 0] };
12
c34b1796
AL
13 // No longer a type mismatch - the `_` can be fully resolved by type inference.
14 let p1: *const u8 = &x1.y as *const _;
1a4d82fc
JJ
15 let t1: *const [u8; 2] = &x1.y as *const _;
16 let h1: *const [u8; 2] = &x1.y as *const [u8; 2];
17
18 let mut x1 = X { y: [0, 0] };
19
c34b1796 20 // This is still an error since we don't allow casts from &mut [T; n] to *mut T.
c1a9b12d 21 let p1: *mut u8 = &mut x1.y as *mut _; //~ ERROR casting
1a4d82fc
JJ
22 let t1: *mut [u8; 2] = &mut x1.y as *mut _;
23 let h1: *mut [u8; 2] = &mut x1.y as *mut [u8; 2];
24}