Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-266.cs
1 using System;
2
3 enum Foo { Bar }
4 class T {
5         public static int Main ()
6         {
7                 Enum e = Foo.Bar;
8                 IConvertible convertible = (IConvertible) e;
9                 IComparable comparable = (IComparable) e;
10                 IFormattable formattable = (IFormattable) e;
11                 
12                 Console.WriteLine ("PASS");
13                 return 0;
14         }
15 }
16