GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-088.cs
blobc95c6b50dbbe9831cbf67d45244bcef76e3b3504
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 static void Main ()
16 new KeyValuePair<int,long> ();