This test compiles with no warnings and passes. ``` rust #[test] #[should_panic(exepcted = "foo")] fn foo() { panic!("bar"); } ``` I would expect at least a warning that "exepcted" was unused.