summaryrefslogtreecommitdiff
path: root/mcs/tests/test-151.cs
blob: ab523eed1548dc2fd277c5923049831f01752635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
namespace A {
        public class Iface {
                void bah() {}
        }
        class my {
                A.Iface b;
                void doit (Object A) {
                        b = (A.Iface)A;
                }
                public static int Main () {
                        return 0;
                }
        }
}