[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1503-6.cs
1 // CS1503: Argument `#1' cannot convert `object' expression to type `int'
2 // Line: 16
3
4 using System;
5
6 class T
7 {
8         public void M1 (int i, params object[] args) {}
9 }
10
11 class MainClass
12 {
13         static void Main ()
14         {
15                 T t = new T ();
16                 t.M1 (new object ());
17         }
18 }