Updated with review feedback.
[mono.git] / mcs / errors / cs1502-12.cs
1 // CS1502: The best overloaded method match for `Global.Test1(int?)' has some invalid arguments
2 // Line: 8
3
4 using System;
5
6 class Global {
7         static void Main() {
8                 Console.Write(Test1((decimal?)2));
9         }       
10         static string Test1(int? value) {
11                 return "ok";
12         }
13 }