Fixed out of memory test

This commit is contained in:
2024-08-12 15:44:09 +02:00
parent 81b0cd813c
commit fdb47c9045
2 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@ import mem
main() {
address := mem.alloc(1024 * 1024 * 1024 * 1024)
assert address < 0
assert address < 0 || address == 12
}