forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rollup merge of rust-lang#19766: nick29581/coerce-raw
r?
- Loading branch information
Showing
3 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// Test coercions between pointers which don't do anything fancy like unsizing. | ||
// These are testing that we don't lose mutability when converting to raw pointers. | ||
|
||
pub fn main() { | ||
// *const -> *mut | ||
let x: *const int = &42i; | ||
let x: *mut int = x; //~ERROR values differ in mutability | ||
|
||
// & -> *mut | ||
let x: *mut int = &42; //~ERROR values differ in mutability | ||
|
||
let x: *const int = &42; | ||
let x: *mut int = x; //~ERROR values differ in mutability | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// Test coercions between pointers which don't do anything fancy like unsizing. | ||
|
||
pub fn main() { | ||
// &mut -> & | ||
let x: &mut int = &mut 42i; | ||
let x: &int = x; | ||
|
||
let x: &int = &mut 42i; | ||
|
||
// & -> *const | ||
let x: &int = &42i; | ||
let x: *const int = x; | ||
|
||
let x: *const int = &42i; | ||
|
||
// &mut -> *const | ||
let x: &mut int = &mut 42i; | ||
let x: *const int = x; | ||
|
||
let x: *const int = &mut 42i; | ||
|
||
// *mut -> *const | ||
let x: *mut int = &mut 42i; | ||
let x: *const int = x; | ||
} |