浏览代码

removed out of memory test

Kajetan Johannes Hammerle 3 年之前
父节点
当前提交
fcbe5b3f06
共有 1 个文件被更改,包括 0 次插入5 次删除
  1. 0 5
      tests/arrays/alloc

+ 0 - 5
tests/arrays/alloc

@@ -22,10 +22,5 @@ void main() {
        
     print *a;
     
-    
-    while(true) {
-        int* h = new int[5];
-    }
-    
     delete a;
 }