1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed test ambiguity

This commit is contained in:
Brian Fiete 2021-11-01 11:48:32 -07:00
parent ed99fb9bdf
commit af02ae2894

View file

@ -55,13 +55,9 @@ namespace System.Linq
}
struct ContainsTest : IEnumerable<int>, IEnumerator<int>
struct ContainsTest : IEnumerator<int>
{
int mState = 0;
public Self GetEnumerator()
{
return this;
}
public Result<int> GetNext() mut
{