codeowners update
[mono.git] / mcs / tests / dtest-022.cs
1 using System;
2
3 public class C
4 {
5         static void M<T> (T t) where T : new ()
6         {
7         }
8
9         public static int Main ()
10         {
11                 M<dynamic> (null);
12                 return 0;
13         }
14 }