15 lines
221 B
C#
15 lines
221 B
C#
|
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;
|
||
|
}
|
||
|
}
|