mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-02 22:55:37 +00:00
5 lines
92 B
Diff
5 lines
92 B
Diff
24c24
|
|
< const b: *u8 = &a; // fix this!
|
|
---
|
|
> const b: *const u8 = &a; // fix this!
|