mirror of
https://github.com/ziglang/zig.git
synced 2024-11-22 20:30:17 +00:00
9 lines
187 B
Zig
9 lines
187 B
Zig
const expect = @import("std").testing.expect;
|
|
|
|
test "volatile" {
|
|
const mmio_ptr: *volatile u8 = @ptrFromInt(0x12345678);
|
|
try expect(@TypeOf(mmio_ptr) == *volatile u8);
|
|
}
|
|
|
|
// test
|