[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1061-11.cs
1 // CS1061: Type `object' does not contain a definition for `Foo' and no extension method `Foo' of type `object' could be found. Are you missing an assembly reference?
2 // Line: 12
3
4 using System.Collections.Generic;
5
6 public class C
7 {
8         void M (IEnumerable<KeyValuePair<string, dynamic>> arg)
9         {
10                 foreach (KeyValuePair<string, object> o in arg)
11                 {
12                         o.Value.Foo ();
13                 }
14         }
15 }