Fixes to lib7, added parallel test structure.

This commit is contained in:
Christoffer Lerno
2025-02-23 13:53:04 +01:00
parent 3a1aa8bdf0
commit 4f72bc4be9
1228 changed files with 63192 additions and 56 deletions

View File

@@ -2,7 +2,7 @@ module priorityqueue_test @test;
import std::collections;
import std::collections::priorityqueue;
def Queue = PriorityQueue(<int>);
def Queue = PriorityQueue{int};
fn void priorityqueue()
{
@@ -32,7 +32,7 @@ fn void priorityqueue()
assert(x == 3, "got %d; want %d", x, 3);
}
def QueueMax = PriorityQueueMax(<int>);
def QueueMax = PriorityQueueMax{int};
fn void priorityqueue_max()
{