Merge pull request #4419 from BrzVlad/fix-oom-nre
[mono.git] / mcs / tests / gtest-553.cs
1 // Compiler options: -r:gtest-553-lib.dll
2
3 class C
4 {
5         public static int Main ()
6         {
7                 new A.C<int> ();
8                 new B.C<byte> ();
9                 return 0;
10         }
11 }