Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-088.cs
1 using System;
2
3 public struct KeyValuePair<K,V>
4 {
5         public KeyValuePair (K k, V v)
6         { }
7
8         public KeyValuePair (K k)
9         { }
10 }
11
12 class X
13 {
14         public static void Main ()
15         {
16                 new KeyValuePair<int,long> ();
17         }
18 }