Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0307-7.cs
1 // CS0307: The type parameter `a' cannot be used with type arguments
2 // Line: 9
3
4 public class Tests<a>
5 {
6         public static void Test ()
7         {
8                 a<int> ();
9         }
10 }