[xbuild] Vbc task - make error column check a little non-specific.
[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         static void Main ()
15         {
16                 new KeyValuePair<int,long> ();
17         }
18 }