2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0030-5.cs
blob34bbea658c67fae5e5a0390758e5e4b4e5e46735
1 // CS0030: Cannot convert type `System.Enum' to `Blah.S'
2 // Line: 12
4 using System;
6 public class Blah {
7 struct S {}
8 enum E { Val }
10 public static void Main ()
12 S s = (S)(Enum)E.Val;