[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs1959.cs
blobafc0b71db686634ffbde8f1af6efd824411478d3
1 // CS1959: Type parameter `T' cannot be declared const
2 // Line: 10
4 class C
8 class C<T> where T : C
10 const T t = null;