summaryrefslogtreecommitdiff
path: root/mcs/tests/test-159.cs
blob: d3d9f101014f960849eae37b52c3543bedcbe1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
                }
        }
}