* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-280.cs
1 //
2 // Thisis just a compilation test for bug 61593
3 using System;
4 namespace AppFramework.Util
5 {
6    public class Logic
7    {
8        static public bool EnumInSet(Enum anEnum, Enum[] checkSet)
9        {
10            foreach(Enum aVal in checkSet)
11            {
12                if (aVal == anEnum)
13                {
14                    return true;
15                }
16            }
17            return false;
18        }
19
20        static void Main () {}
21    }
22 }
23