Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0453-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
3
4 using System;
5
6 public static class Nullable_Test {
7         public static int Compare<T> (Nullable<T> left)
8         {
9                 return 0;
10         }
11 }