13 lines
206 B
Rust
13 lines
206 B
Rust
#![feature(custom_attribute)]
|
|
#![allow(dead_code, unused_attributes)]
|
|
|
|
//error-pattern:unimplemented: mentions of function items
|
|
|
|
|
|
#[miri_run]
|
|
fn failed_assertions() {
|
|
assert_eq!(5, 6);
|
|
}
|
|
|
|
fn main() {}
|