Revert some changes which don't have proper dependencies.
[mono-project.git] / mono / tests / ienumerator-interfaces.2.cs
blobd0c47ad1cecbc4a01db9391766bcd9d78bab19c5
1 using System;
2 using System.Collections.Generic;
3 using System.Reflection;
5 public class Tests {
7 public static void NotNullItems<T>(IEnumerable<T> items) where T : class {
8 foreach (object item in items) {
12 public static void Main () {
13 MethodBase[] arr = new ConstructorInfo[] { null, null };
14 NotNullItems (arr);