for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1061-11.cs
blobb795b50c208e339819326072b9be4443b9003e0e
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
4 using System.Collections.Generic;
6 public class C
8 void M (IEnumerable<KeyValuePair<string, dynamic>> arg)
10 foreach (KeyValuePair<string, object> o in arg)
12 o.Value.Foo ();