[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-637.cs
blobf08c8502c74f712d15dd1488ce11f20437a45315
1 using System;
3 public struct nint
5 public static implicit operator nint (int v)
7 return 0;
11 public class MainClass
13 static void Test (string key, int? value)
17 static void Test (string key, nint? value)
19 throw new ApplicationException ();
22 public static void Main ()
24 Test (null, int.MinValue);