| 1234567891011121314151617181920 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. using System.Linq;using System.Threading.Tasks;using Xunit;namespace Tests{    public class Empty : AsyncEnumerableTests    {        [Fact]        public async Task Empty1()        {            var xs = AsyncEnumerable.Empty<int>();            await NoNextAsync(xs.GetAsyncEnumerator());        }    }}
 |