[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0315-2.cs
blob70e2c3dcaad1ec9b69cafad293f99e740138b10c
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
5 public class Test
7 public static void Main ()
9 A<ushort>.N1<ushort> a = null;