dlr bug
[mcs.git] / tests / test-280.cs
blobaff2fbb5994586140c993b85faf6c83707cfd751
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 static void Main () {}