Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-506.cs
1 public struct SchemaEntry<T>
2 {
3         public static SchemaEntry<T> Zero;
4 }
5
6 public class C
7 {
8         public static void Main ()
9         {
10                 new SchemaEntry<short> ();
11         }
12 }