Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0315-2.cs
1 // CS0315: The type `ushort' cannot be used as type parameter `T' in the generic type or method `A<T>'. There is no boxing conversion from `ushort' to `A<ushort>.N1<ushort>'
2 // Line: 9
3 // Compiler options: -r:CS0315-2-lib.dll
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 A<ushort>.N1<ushort> a = null;
10         }
11 }