aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/ptrFromInt_with_misaligned_address.zig
blob: 951f616decc97e7273262bb785caa283a09a6520 (plain)
1
2
3
4
5
6
7
8
pub export fn entry() void {
    var y: [*]align(4) u8 = @ptrFromInt(5);
    _ = &y;
}

// error
//
// :2:41: error: pointer type '[*]align(4) u8' requires aligned address