Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0453-4.cs
blob4e3d16d01dbebdc7899007651f038e66f35d80e4
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;