start with test runner

This commit is contained in:
nora 2023-04-04 12:23:45 +02:00
parent bf8f13c62a
commit c70d6fa26f
6 changed files with 86 additions and 1 deletions

View file

@ -0,0 +1,12 @@
use std::collecions::HashMap;
/// ~REQUIRE-DELETED
fn user(map: HashMap<(), ()>) {
map.insert((), ());
}
/// ~MINIMIZE-ROOT main
fn main() {
let map = HashMap::new();
user(map);
}