void WellKnownInvocations(ValueTask vt, ValueTask other)
        {
            if (vt.IsCanceled || !vt.IsFaulted || vt.IsCompleted)
            {
                return;
            }

            if (vt.IsCompletedSuccessfully)
            {
                Console.WriteLine(vt.ToString());
            }

            if (vt == other)
            {
            }

            if (vt.Equals(other))
            {
            }
            if (!vt.Equals(other))
            {
            }

            Console.WriteLine(vt.GetHashCode());
        }