**** Merged from MCS ****
[mono-project.git] / mcs / errors / gcs0453.cs
blobb6cd6cd13ad665912f00859185d8a7db6f066cb9
1 // CS0453: The type `X' must be a value type in order to use it as type
2 // parameter `T' in the generic type or method `MyValue<T>'.
3 // Line: 10
4 public class MyValue<T>
5 where T : struct
6 { }
8 class X
10 MyValue<X> x;
12 static void Main ()
13 { }