Pass tests with GDC 10.3

This commit is contained in:
2021-05-27 08:14:12 +02:00
parent 4f48544297
commit d9fda61fe1
2 changed files with 4 additions and 2 deletions

View File

@ -4,13 +4,14 @@
module tanya.net.tests.iface;
import std.algorithm.comparison;
import std.utf;
import tanya.net.iface;
@nogc nothrow @safe unittest
{
version (linux)
{
assert(equal(indexToName(1)[], "lo"));
assert(equal(indexToName(1)[], "lo".byChar));
}
else version (Windows)
{