Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / dtest-022.cs
bloba204674b000c71f35c91656deb91f0e176230fc1
1 using System;
3 public class C
5 static void M<T> (T t) where T : new ()
9 public static int Main ()
11 M<dynamic> (null);
12 return 0;