2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0453-4.cs
blob748d235e1ec0c8f607bdce28a72dba018a80d23c
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
4 using System;
6 public static class Nullable_Test {
7 public static int Compare<T> (Nullable<T> left)
9 return 0;