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

test-135.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b3cdf70badb574df64983291720bebd9524ce71 (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
25
26
27
28
29
using System;
using System.Reflection;
// test bug bug#26264

interface IA {
        void doh();
}
interface IB {

        IA Prop {get;}
}
class A : IA {
        public void doh() {}
}
class T : IB {
        IA IB.Prop {
                get { return new A(); }
        }
        public A Prop {
                get { return new A(); }
        }
        public static int Main() {
		PropertyInfo[] p = typeof (T).GetProperties (BindingFlags.Public| BindingFlags.NonPublic|BindingFlags.Instance);
		if (p == null || p.Length != 2)
			return 1;
                return 0;
        }
}