15 lines
221 B
C#
Raw Normal View History

using System;
enum Foo { foo };
public class Test
{
public static void Main ()
{
ValueType vt = (ValueType) 1;
IComparable ic = (IComparable) 1;
Enum e = (Enum) Foo.foo;
}
}