Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / gtest-062.cs
blob0e4a54d4479d1cd0b0cb4856cdf573677a59dd3a
1 using System.Collections.Generic;
3 class X
5 public IEnumerable<int> Test (int a, long b)
7 while (a < b) {
8 a++;
9 yield return a;
13 public static int Main ()
15 X x = new X ();
16 int sum = 0;
17 foreach (int i in x.Test (3, 8L))
18 sum += i;
20 return sum == 30 ? 0 : 1;