test: remove accidental hard tab

This commit is contained in:
mlugg 2024-08-20 15:57:43 +01:00
parent 018262d537
commit 2fb78430db
No known key found for this signature in database
GPG Key ID: 3F5B7DCCBF4AF02E

View File

@ -31,7 +31,7 @@ pub fn main() void {}
comptime { comptime {
const x: [*c]u8 = null; const x: [*c]u8 = null;
var runtime_len: usize = undefined; var runtime_len: usize = undefined;
runtime_len = 0; runtime_len = 0;
const y = x[0..runtime_len]; const y = x[0..runtime_len];
_ = y; _ = y;
} }