Fixed the two tests broken by accident with the last one

This commit is contained in:
Nathan Braswell
2016-02-07 16:52:01 -05:00
parent 11eba1ba07
commit 9733a0be26
3 changed files with 10 additions and 10 deletions

View File

@@ -5,12 +5,12 @@ obj TemplateTest<T,J> {
var a: T;
var b: J;
fun print(): void {
io::print("a: ");
io::print(a);
io::print("\n");
io::print("b: ");
io::print(b);
io::print("\n");
simple_print::print("a: ");
simple_print::print(a);
simple_print::print("\n");
simple_print::print("b: ");
simple_print::print(b);
simple_print::print("\n");
}
};