Add ExtFmt test for unsigned type

This commit is contained in:
Brian Anderson 2011-04-11 23:39:13 -04:00
parent 330fdd2b04
commit 44aed626bf

View file

@ -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");