We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053fc7a commit 25cf5a6Copy full SHA for 25cf5a6
zig-code/index.zig
@@ -3,9 +3,9 @@ const parseInt = std.fmt.parseInt;
3
4
test "parse integers" {
5
const input = "123 67 89,99";
6
- const ally = std.testing.allocator;
+ const gpa = std.testing.allocator;
7
8
- var list = std.ArrayList(u32).init(ally);
+ var list = std.ArrayList(u32).init(gpa);
9
// Ensure the list is freed at scope exit.
10
// Try commenting out this line!
11
defer list.deinit();
0 commit comments