Add ExtFmt test for unsigned type
This commit is contained in:
parent
330fdd2b04
commit
44aed626bf
@ -17,6 +17,7 @@ fn main() {
|
||||
test(#fmt("%d", 1), "1");
|
||||
test(#fmt("%i", 2), "2");
|
||||
test(#fmt("%i", -1), "-1");
|
||||
test(#fmt("%u", 10u), "10");
|
||||
test(#fmt("%s", "test"), "test");
|
||||
test(#fmt("%b", true), "true");
|
||||
test(#fmt("%b", false), "false");
|
||||
|
Loading…
Reference in New Issue
Block a user