12 lines
150 B
Rust
12 lines
150 B
Rust
|
#![feature(custom_attribute)]
|
||
|
#![allow(dead_code, unused_attributes)]
|
||
|
|
||
|
#[miri_run]
|
||
|
fn empty() {}
|
||
|
|
||
|
#[miri_run]
|
||
|
fn unit_var() {
|
||
|
let x = ();
|
||
|
x
|
||
|
}
|