blob: 9ede4031bb8e72d93d507440a6532c67d0f2a286 [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(())
}