Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / dtest-iter-01.cs
blob6ce2a46bb4f2b16e781d636a67657a6e3af413c5
1 using System;
2 using System.Collections.Generic;
4 static class Program
6 public static IEnumerable<dynamic> D1 ()
8 yield break;
11 public static IEnumerable<Func<dynamic>> D2 ()
13 yield break;
16 static void Main ()