formatting

This commit is contained in:
2022-06-07 06:30:18 +03:00
parent a5c24ace80
commit e2d20bb805
3 changed files with 28 additions and 10 deletions

View File

@@ -112,4 +112,10 @@ test "invalid argument" {
));
}
test "smoke test" {}
test "smoke test" {
const allocator = testing.allocator;
const args = &[_][*:0]const u8{"--invalid-argument"};
var stderr = ArrayList(u8).init(allocator);
defer stderr.deinit();
_ = args;
}