// CS0453: The type `X' must be a value type in order to use it as type // parameter `T' in the generic type or method `MyValue'. // Line: 10 public class MyValue where T : struct { } class X { MyValue x; static void Main () { } }