2016-05-31 18:26:03 +02:00
|
|
|
#![feature(custom_attribute)]
|
|
|
|
|
#![allow(dead_code, unused_attributes)]
|
|
|
|
|
|
2016-06-08 13:43:34 +02:00
|
|
|
//error-pattern:begin_panic_fmt
|
2016-05-31 18:26:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#[miri_run]
|
2016-06-02 17:05:17 +02:00
|
|
|
fn failed_assertions() {
|
|
|
|
|
assert_eq!(5, 6);
|
2016-05-31 18:26:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|