[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1502-12.cs
blobac3e383bfc871269418ce73afeea21fa862b2292
1 // CS1502: The best overloaded method match for `Global.Test1(int?)' has some invalid arguments
2 // Line: 8
4 using System;
6 class Global {
7 static void Main() {
8 Console.Write(Test1((decimal?)2));
9 }
10 static string Test1(int? value) {
11 return "ok";