[mcs] Update logic when checking for tuple element names when overriding inherited...
[mono.git] / mcs / tests / test-tuple-06.cs
1 class Base
2 {
3         public virtual (int, long rest) Foo ()
4         {
5                 return (1, 2);
6         }
7 }
8
9 class Test : Base
10 {
11         public override (int, long rest) Foo ()
12         {
13                 return (3, 4);
14         }
15
16         public static void Main ()
17         {       
18         }
19 }