[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-088.cs
blob94eaa875c5aaff4af8247d18bdb9f53b5eeb1234
1 using System;
3 public struct KeyValuePair<K,V>
5 public KeyValuePair (K k, V v)
6 { }
8 public KeyValuePair (K k)
9 { }
12 class X
14 public static void Main ()
16 new KeyValuePair<int,long> ();