[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0019-14.cs
1 // CS0019: Operator `%' cannot be applied to operands of type `E' and `int'
2 // Line : 10
3
4 enum E: byte {
5         Min
6 }
7
8 class T {
9         static void Main () {
10                 E error = E.Min % 2;
11         }
12 }