[interp] disable assemblyresolve_event6.exe
[mono.git] / mono / tests / ienumerator-interfaces.2.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Reflection;
4
5 public class Tests {
6
7         public static void NotNullItems<T>(IEnumerable<T> items) where T : class {
8                 foreach (object item in items) {
9                 }
10         }
11
12         public static void Main () {
13                 MethodBase[] arr = new ConstructorInfo[] { null, null };
14                 NotNullItems (arr);
15         }
16 }