rust/tests/mir-opt/const_prop/offset_of.rs

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

50 lines
807 B
Rust
Raw Normal View History

2022-09-11 07:37:49 +00:00
// unit-test
// compile-flags: -O
#![feature(offset_of)]
2023-04-11 23:38:00 +00:00
use std::marker::PhantomData;
2022-09-11 07:37:49 +00:00
use std::mem::offset_of;
2023-04-11 23:38:00 +00:00
struct Alpha {
x: u8,
y: u16,
z: Beta,
}
struct Beta(u8, u8);
struct Gamma<T> {
2022-09-11 07:37:49 +00:00
x: u8,
y: u16,
2023-04-11 23:38:00 +00:00
_t: T,
2022-09-11 07:37:49 +00:00
}
#[repr(C)]
2023-04-11 23:38:00 +00:00
struct Delta<T> {
_phantom: PhantomData<T>,
x: u8,
y: u16,
}
// EMIT_MIR offset_of.concrete.ConstProp.diff
fn concrete() {
let x = offset_of!(Alpha, x);
let y = offset_of!(Alpha, y);
let z0 = offset_of!(Alpha, z.0);
let z1 = offset_of!(Alpha, z.1);
}
// EMIT_MIR offset_of.generic.ConstProp.diff
fn generic<T>() {
let gx = offset_of!(Gamma<T>, x);
let gy = offset_of!(Gamma<T>, y);
let dx = offset_of!(Delta<T>, x);
let dy = offset_of!(Delta<T>, y);
}
2022-09-11 07:37:49 +00:00
fn main() {
2023-04-11 23:38:00 +00:00
concrete();
generic::<()>();
2022-09-11 07:37:49 +00:00
}