Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-258.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff0e78ca2649e23c63bbb7fde282e25c1e728a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;

// Without namespace, this error does not happen.
namespace MyTest
{
        public class Test
        {
                public interface Inner
                {
                        void Foo ();
                }
        }

        public class Test2 : MarshalByRefObject, Test.Inner
        {
                // This is OK: public void Foo ()
                void Test.Inner.Foo ()
                {
                }

		public static void Main ()
		{ }
        }
}