Bump corefx
[mono-project.git] / mono / tests / bug-461261.cs
blobfd387c78752b842f3a8a9284a7be60dbb13c0f01
1 using System;
2 using System.Collections.Generic;
4 public interface ICode
6 string Code { get; }
9 static class Program
11 public static void Main ()
13 IEnumerable<object> array = new ICode[10];
14 IEnumerator<object> x = array.GetEnumerator ();
16 x.MoveNext ();
17 object o = x.Current;