Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / tests / gtest-166-lib.cs
index 61b92f1e7339e355136019cecb88cde589d258bd..0ee4b9fa0759136996ff8c9d73f5febb75182c33 100644 (file)
@@ -1,6 +1,19 @@
-// Compiler options: -t:library -unsafe
+// Compiler options: -t:library
 
-public unsafe struct ExternalStruct
+using System;
+
+public class TestClass
 {
-    public fixed double double_buffer [4];
+       public class B : A<Nested>
+       {
+       }
+       
+       public abstract class A<T>
+       {
+               public static Comparison<A<T>> Compare;
+       }
+       
+       public class Nested
+       {
+       }
 }