Remove a few uses of fully qualified names that rely on a DMD bug

This commit is contained in:
Boris Carvajal 2021-02-21 02:53:49 -03:00
parent fa4682442b
commit 276053dd07
No known key found for this signature in database
GPG key ID: 6517FFB444EB6201
6 changed files with 14 additions and 14 deletions

View file

@ -965,8 +965,8 @@ if (isInputRange!R &&
import std.ascii : isDigit;
import std.uni : isWhite;
assert(countUntil!(std.uni.isWhite)("hello world") == 5);
assert(countUntil!(std.ascii.isDigit)("hello world") == -1);
assert(countUntil!(isWhite)("hello world") == 5);
assert(countUntil!(isDigit)("hello world") == -1);
assert(countUntil!"a > 20"([0, 7, 12, 22, 9]) == 3);
}