Allow passing null to JsonArray.Add()
[mono.git] / mcs / tests / gtest-556-lib.cs
1 // Compiler options: -t:library
2
3 public class A
4 {
5         public class N<T>
6         {
7                 public static N<T> Method ()
8                 {
9                         return default (N<T>);
10                 }
11         }
12 }