[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / gtest-260.cs
1 class A<T> where T : class {}
2 class B<T> : A<T> where T : class {}
3 class Test {
4         internal static A<Test> x = new B<Test> ();
5         static void Main () { }
6 }