[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / test-792.cs
1 // Compiler options: -r:test-792-lib.dll
2
3 // Compilation test only for missing 2nd level dependecies
4
5 class Program
6 {
7         void Test ()
8         {
9                 new X();
10                 
11                 var s = new MultipleSameNames ();
12                 s.AA = "1";
13         }
14         
15         void Test2 (IMemberDelayed md)
16         {
17                 md.Working ();
18         }
19
20         static void Main ()
21         {
22         }
23 }
24