2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1959.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;