Remove unneeeded address-of operator

This commit is contained in:
Andrew Kelley 2020-04-01 10:21:17 -04:00 committed by GitHub
parent 748b2c72a3
commit d23f9a164e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,6 @@ test "" {
std.fs.cwd().deleteFileZ(filename) catch {}; std.fs.cwd().deleteFileZ(filename) catch {};
} }
const out_stream = &cOutStream(out_file); const out_stream = cOutStream(out_file);
try out_stream.print("hi: {}\n", .{@as(i32, 123)}); try out_stream.print("hi: {}\n", .{@as(i32, 123)});
} }