This commit is contained in:
2026-06-05 23:51:45 +02:00
parent 629634e09d
commit a5bbd016eb
7 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const std = @import("std");
pub fn main() void {
const a: u8 = 12;
const b: *u8 = &a; // fix this!
const b: *const u8 = &a; // fix this!
std.debug.print("a: {}, b: {}\n", .{ a, b.* });
}