add failing test

This commit is contained in:
Mitchell Marino 2022-12-15 18:05:07 -06:00
parent e59ef57784
commit c169803347

View File

@ -1,3 +1,9 @@
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }
#[test]
fn failing_test() {
assert!(false);
}