mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 21:02:04 +00:00
8 lines
149 B
Rust
8 lines
149 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(unsafe_fields)]
|
|
|
|
pub struct WithUnsafeField {
|
|
pub unsafe unsafe_field: u32,
|
|
pub safe_field: u32,
|
|
}
|