[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / test-783.cs
1 enum E { a, b }
2
3 class C
4 {
5         public static void Main ()
6         {
7                 M ((uint) 0);
8                 M ((long) 0);
9                 M ((sbyte) 0);
10                 M ((ulong) 0);
11         }
12
13         static void M (E e)
14         {
15         }
16 }