1
Fork 0

Move [debug_]assert_matches to mod {core, std}::assert.

This commit is contained in:
Mara Bos 2021-07-07 16:25:46 +00:00
parent c5e344f774
commit e3044432c7
9 changed files with 36 additions and 15 deletions

View file

@ -1,4 +1,4 @@
fn main() {
assert(true);
//~^ ERROR expected function, found macro `assert`
assert_eq(1, 1);
//~^ ERROR expected function, found macro `assert_eq`
}