rust/tests/ui/cast/issue-84213.rs

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

17 lines
352 B
Rust
Raw Normal View History

2021-04-15 21:17:44 +00:00
// run-rustfix
struct Something {
pub field: u32,
}
fn main() {
let mut something = Something { field: 1337 };
let _ = something.field;
2021-04-15 21:17:44 +00:00
let _pointer_to_something = something as *const Something;
//~^ ERROR: non-primitive cast
let _mut_pointer_to_something = something as *mut Something;
//~^ ERROR: non-primitive cast
}