blob: 96808a3ed914f40173811305611cbd7b0961bad5 [file] [log] [blame]
// compile-flags: --test
#![feature(test)]
extern crate test;
use std::num::ParseIntError;
use test::Bencher;
#[test]
#[should_panic]
fn not_a_num() -> Result<(), ParseIntError> {
//~^ ERROR functions using `#[should_panic]` must return `()`
let _: u32 = "abc".parse()?;
Ok(())
}