Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0453.cs
1 // CS0453: The type `X' must be a non-nullable value type in order to use it as type parameter `T' in the generic type or method `MyValue<T>'
2 // Line: 10
3 public class MyValue<T>
4         where T : struct
5 { }
6
7 class X
8 {
9         MyValue<X> x;
10
11         static void Main ()
12         { }
13 }