[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / dtest-iter-01.cs
1 using System;
2 using System.Collections.Generic;
3
4 static class Program
5 {
6         public static IEnumerable<dynamic> D1 ()
7         {
8                 yield break;
9         }
10
11         public static IEnumerable<Func<dynamic>> D2 ()
12         {
13                 yield break;
14         }
15
16         public static void Main ()
17         {
18         }
19 }