mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
15 lines
268 B
Rust
15 lines
268 B
Rust
//@ known-bug: #111699
|
|
//@ edition:2021
|
|
//@ compile-flags: -Copt-level=0
|
|
#![feature(core_intrinsics)]
|
|
use std::intrinsics::offset;
|
|
|
|
fn main() {
|
|
let a = [1u8, 2, 3];
|
|
let ptr: *const u8 = a.as_ptr();
|
|
|
|
unsafe {
|
|
assert_eq!(*offset(ptr, 0), 1);
|
|
}
|
|
}
|