diff options
| author | Justus Klausecker <justus@klausecker.de> | 2025-08-03 14:53:52 +0200 |
|---|---|---|
| committer | Justus Klausecker <justus@klausecker.de> | 2025-08-03 14:59:56 +0200 |
| commit | 7c35070b901d9181ec3c666480a91eddf6c1abce (patch) | |
| tree | 74f6eddb4386054ad74aa04b9a506d1ccfb717dc /test/behavior/array.zig | |
| parent | 81219493f87b8345446e387e71279d74f35b6824 (diff) | |
| download | zig-7c35070b901d9181ec3c666480a91eddf6c1abce.tar.gz zig-7c35070b901d9181ec3c666480a91eddf6c1abce.zip | |
zig fmt: apply new cast builtin order
Diffstat (limited to 'test/behavior/array.zig')
| -rw-r--r-- | test/behavior/array.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig index 07eb632b1e..1eb4c12cbf 100644 --- a/test/behavior/array.zig +++ b/test/behavior/array.zig @@ -1091,7 +1091,7 @@ test "initialize pointer to anyopaque with reference to empty array initializer" const ptr: *const anyopaque = &.{}; // The above acts like an untyped initializer, since the `.{}` has no result type. // So, `ptr` points in memory to an empty tuple (`@TypeOf(.{})`). - const casted: *const @TypeOf(.{}) = @alignCast(@ptrCast(ptr)); + const casted: *const @TypeOf(.{}) = @ptrCast(@alignCast(ptr)); const loaded = casted.*; // `val` should be a `@TypeOf(.{})`, as expected. // We can't check the value, but it's zero-bit, so the type matching is good enough. |
