[mcs] Fixes codegen for pattern probing with value-type variables
[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 }