This commit is contained in:
Adam Millerchip 2021-12-26 23:57:57 +09:00
parent 7605499b90
commit 3ffb8d7205
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ pub fn main() void {
// This function should take a reference to a u8 value and set it
// to 5.
fn makeFive(x: *u8) void {
??? = 5; // fix me!
x.* = 5; // fix me!
}