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: c7372e1755b46e8a2c41e5d7ceafa24d1ed533b6 (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(); }
        }
        static int Main() {
		PropertyInfo[] p = typeof (T).GetProperties (BindingFlags.Public| BindingFlags.NonPublic|BindingFlags.Instance);
		if (p == null || p.Length != 1)
			return 1;
                return 0;
        }
}