2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-14.cs
blob6cca6407202440a4139d46f95be3ba3c81bdb8e2
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;