rust/tests/ui/ptr-coercion.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
1021 B
Rust
Raw Normal View History

// 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
2015-02-01 00:23:42 +08:00
let x: *const isize = &42;
2015-01-12 14:01:44 +08:00
let x: *mut isize = x; //~ ERROR mismatched types
//~| expected raw pointer `*mut isize`
//~| found raw pointer `*const isize`
2016-08-20 07:05:37 +08:00
//~| types differ in mutability
// & -> *mut
2015-01-12 14:01:44 +08:00
let x: *mut isize = &42; //~ ERROR mismatched types
//~| expected raw pointer `*mut isize`
//~| found reference `&isize`
2016-08-20 07:05:37 +08:00
//~| types differ in mutability
let x: *const isize = &42;
2015-01-12 14:01:44 +08:00
let x: *mut isize = x; //~ ERROR mismatched types
//~| expected raw pointer `*mut isize`
//~| found raw pointer `*const isize`
2016-08-20 07:05:37 +08:00
//~| types differ in mutability
}