[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[mono.git] / mcs / errors / cs0307-3.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 (int a)
7         {
8                 a<int> ();
9         }
10 }