Add simple test of assert_eq!.

This commit is contained in:
Scott Olson 2016-03-21 04:37:28 -06:00
parent 59e25cc52c
commit 5b0164b0fa

View file

@ -17,3 +17,8 @@ fn arc() -> i32 {
let a = Arc::new(42);
*a
}
#[miri_run]
fn true_assert() {
assert_eq!(1, 1);
}