mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fixes to lib7, added parallel test structure.
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user