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

@ -1123,7 +1123,8 @@ struct Array(T)
}
/// ditto
bool opEquals(Range that)
bool opEquals(R)(R that)
if (is(R == Range))
{
return equal(opIndex(), that);
}