[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[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 }