[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1959.cs
1 // CS1959: Type parameter `T' cannot be declared const
2 // Line: 10
3
4 class C
5 {
6 }
7
8 class C<T> where T : C
9 {
10         const T t = null;
11 }