Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0266-25.cs
1 // CS0266: Cannot implicitly convert type `System.Collections.Generic.IList<dynamic>' to `string[]'. An explicit conversion exists (are you missing a cast?)
2 // Line: 10
3 // Compiler options: -r:CS0266-25-lib.dll -noconfig
4
5 public class C
6 {
7         public static void Main ()
8         {
9                 var t = new Test ();
10                 string[] s = t.DynField;
11         }
12 }