[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / dcs1061.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 a using directive or 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 }