Merge branch 'master' of http://github.com/mono/mono
[mono.git] / mcs / errors / gcs0307-6.cs
1 // CS0307: The variable `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 }