rust/tests/ui/ptr_ops/issue-80309.rs

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

14 lines
235 B
Rust
Raw Normal View History

2022-02-04 14:11:51 +00:00
//@ run-pass
2022-02-22 01:53:16 +00:00
//@ compile-flags: -O
2022-02-04 14:11:51 +00:00
// Regression test for issue #80309
pub unsafe fn foo(x: *const i8) -> i8 {
*x.wrapping_sub(x as _).wrapping_add(x as _)
}
fn main() {
let x = 42;
println!("{}", unsafe { foo(&x) });
}