]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/ptr-coercion.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / ptr-coercion.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test coercions between pointers which don't do anything fancy like unsizing.
12
13 pub fn main() {
14     // &mut -> &
15     let x: &mut int = &mut 42i;
16     let x: &int = x;
17
18     let x: &int = &mut 42i;
19
20     // & -> *const
21     let x: &int = &42i;
22     let x: *const int = x;
23
24     let x: *const int = &42i;
25
26     // &mut -> *const
27     let x: &mut int = &mut 42i;
28     let x: *const int = x;
29
30     let x: *const int = &mut 42i;
31
32     // *mut -> *const
33     let x: *mut int = &mut 42i;
34     let x: *const int = x;
35 }