| 1 | export fn foo() void { |
| 2 | const bytes: [16]u8 align(@alignOf([]const u8)) = @splat(0xFA); |
| 3 | _ = @as(*const []const u8, @ptrCast(&bytes)).*; |
| 4 | } |
| 5 | |
| 6 | // error |
| 7 | // |
| 8 | // :3:49: error: comptime dereference requires '[]const u8' to have a well-defined layout |