Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0307-6.cs
1 // CS0307: The type parameter `a' cannot be used with type arguments
2 // Line: 9
3
4 public class Tests
5 {
6         public static void Test<a> ()
7         {
8                 a<int> ();
9         }
10 }