mirror of
https://github.com/ziglang/zig.git
synced 2025-01-05 18:00:25 +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
|