[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / gtest-218.cs
1 public interface IFoo<T> where T : IFoo<T> { }
2 public interface IBaz<T> where T : IFoo<T> { }
3
4 class Foo : IFoo<Foo>
5 { }
6
7 class X
8 {
9         static void Main ()
10         { }
11 }