Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-151.cs
1 using System;
2 namespace A {
3         public class Iface {
4                 void bah() {}
5         }
6         class my {
7                 A.Iface b;
8                 void doit (Object A) {
9                         b = (A.Iface)A;
10                 }
11                 public static int Main () {
12                         return 0;
13                 }
14         }
15 }
16