[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0019-14.cs
blob6981d2ed06fbfb7d941f7d816d2dadb99d9000dd
1 // CS0019: 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;