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

50 lines
833 B
Rust
Raw Normal View History

2023-04-23 07:30:02 -05:00
// unit-test: ConstProp
2023-06-08 07:11:31 -05:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-09-11 02:37:49 -05:00
#![feature(offset_of)]
2023-04-11 18:38:00 -05:00
use std::marker::PhantomData;
2022-09-11 02:37:49 -05:00
use std::mem::offset_of;
2023-04-11 18:38:00 -05:00
struct Alpha {
x: u8,
y: u16,
z: Beta,
}
struct Beta(u8, u8);
struct Gamma<T> {
2022-09-11 02:37:49 -05:00
x: u8,
y: u16,
2023-04-11 18:38:00 -05:00
_t: T,
2022-09-11 02:37:49 -05:00
}
#[repr(C)]
2023-04-11 18:38:00 -05: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 02:37:49 -05:00
fn main() {
2023-04-11 18:38:00 -05:00
concrete();
generic::<()>();
2022-09-11 02:37:49 -05:00
}