dlr bug
[mcs.git] / tests / gtest-312.cs
blobeb1f5abacf6195e8ef9a7e80be79e26b19f953f9
1 using System.Collections.Generic;
3 class CantCastGenericListToArray
5 public static void Main(string[] args)
7 IList<string> list = new string[] { "foo", "bar" };
8 string[] array = (string[])list;
9 if (list.Count != array.Length)
11 throw new System.ApplicationException();