aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/test_comptime_incorrect_pointer_alignment.zig
blob: 7b6b6ca813ed6ed156ade36fa4f314e616b137d5 (plain)
1
2
3
4
5
6
7
comptime {
    const ptr: *align(1) i32 = @ptrFromInt(0x1);
    const aligned: *align(4) i32 = @alignCast(ptr);
    _ = aligned;
}

// test_error=pointer address 0x1 is not aligned to 4 bytes