2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-13.cs
blobee1d2855ed90fb480117c6997f37da5f2551b4a4
1 // cs0019.cs: Operator `>>' cannot be applied to operands of type `E' and `int'
2 // Line : 10
4 enum E: byte {
5 Min
8 class T {
9 static void Main () {
10 E error = E.Min >> 2;