Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs1061-11.cs
blob3ba5b84e83d19d3190000e5a85dea79d3793feba
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
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 ();