2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1959-2.cs
blob007414e579a8982f79afe377cf2899cc11a0821d
1 // CS1959: Type parameter `T' cannot be declared const
2 // Line: 8
4 struct S
6 public void Foo<T> () where T : struct
8 const T t = null;