Merge pull request #5560 from kumpera/wasm-work-p3
[mono.git] / mcs / tests / test-451.cs
1 using System;
2
3 enum Foo { foo };
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 ValueType vt = (ValueType) 1;
10                 IComparable ic = (IComparable) 1;
11
12                 Enum e = (Enum) Foo.foo;
13         }
14 }