23 lines
246 B
C#
Raw Normal View History

public enum LiteralType
{
Void,
}
class C
{
public LiteralType LiteralType
{
set
{
}
}
private LiteralType[] widenSbyte = new LiteralType[]
{
LiteralType.Void
};
public static void Main () {}
}