Files
linux-packaging-mono/mcs/tests/gtest-506.cs

13 lines
152 B
C#
Raw Normal View History

public struct SchemaEntry<T>
{
public static SchemaEntry<T> Zero;
}
public class C
{
public static void Main ()
{
new SchemaEntry<short> ();
}
}