[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-019.cs
blobb0903dea144f22e09c85acc43b11f542d6eb85ee
1 // A very simple generic interface
3 public interface IEnumerator<T> {
4 T Current { get; }
5 bool MoveNext();
6 void Reset();
9 class X
11 public static void Main ()
12 { }