[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-280.cs
bloba428ea931d60f78ed59d4073d2d512457897e6fb
1 //
2 // Thisis just a compilation test for bug 61593
3 using System;
4 namespace AppFramework.Util
6 public class Logic
8 static public bool EnumInSet(Enum anEnum, Enum[] checkSet)
10 foreach(Enum aVal in checkSet)
12 if (aVal == anEnum)
14 return true;
17 return false;
20 public static void Main () {}