[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / gtest-151.cs
1 class Test<T> where T: struct{
2    public Test(){
3       T s = new T();
4    }
5 }
6
7 class X
8 {
9         static int Main ()
10         {
11                 new Test<bool> ();
12                 return 0;
13         }
14 }
15