2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / gen-88.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         static void Main ()
15         {
16                 new KeyValuePair<int,long> ();
17         }
18 }