Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0308-8.cs
1 // CS0308: The non-generic method `C.TestCall(int)' cannot be used with the type arguments
2 // Line: 13
3
4 class C
5 {
6         static void TestCall (int i)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 dynamic d = 0;
13                 TestCall<int> (d);
14         }
15 }