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

test-151.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
                }
        }
}