Add negative tests

This commit is contained in:
Josias 2020-11-29 09:55:47 +01:00 committed by Eduardo Broto
parent b81141cfb9
commit 51cee15be0

View File

@ -2,5 +2,7 @@
fn main() {
eprintln!("Hello");
println!("This should not do anything");
eprint!("World");
print!("Nor should this");
}