In .:
[mono.git] / mcs / errors / gcs0453-4.cs
1 // CS0453: The type `T' must be a non-nullable value type in order to use it as type parameter `T' in the generic type or method `System.Nullable<T>'
2 // Line: 14\r
3 \r
4 using System;
5 \r
6 public static class Nullable_Test {\r
7         public static int Compare<T> (Nullable<T> left)\r
8         {\r
9                 return 0;\r
10         }\r
11 }