[mcs] Update logic when checking for tuple element names when overriding inherited...
[mono.git] / mcs / tests / test-748.cs
1 // Compiler options: -r:test-748-lib.dll
2
3 using System;
4 using Test;
5 using RealTest;
6
7 class M
8 {
9         Foo Test ()
10         {
11                 return new RealTest.Foo ();
12         }
13         
14         public static void Main ()
15         {
16         }
17 }
18
19 namespace Test.Local
20 {
21         class M
22         {
23                 Foo Test ()
24                 {
25                         return new RealTest.Foo ();
26                 }
27         }
28 }
29
30 namespace RealTest
31 {
32         class Foo
33         {
34         }
35 }