]> git.lizzy.rs Git - rust.git/blob - tests/ui/ptr_offset_with_cast.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / ptr_offset_with_cast.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 fn main() {
11     let vec = vec![b'a', b'b', b'c'];
12     let ptr = vec.as_ptr();
13
14     let offset_u8 = 1_u8;
15     let offset_usize = 1_usize;
16     let offset_isize = 1_isize;
17
18     unsafe {
19         ptr.offset(offset_usize as isize);
20         ptr.offset(offset_isize as isize);
21         ptr.offset(offset_u8 as isize);
22
23         ptr.wrapping_offset(offset_usize as isize);
24         ptr.wrapping_offset(offset_isize as isize);
25         ptr.wrapping_offset(offset_u8 as isize);
26     }
27 }