eol
[mcs.git] / tests / test-159.cs
blobd3d9f101014f960849eae37b52c3543bedcbe1ed
1 using System;
2 namespace A {
3 public class Iface {
4 void bah() {}
6 class my {
7 A.Iface b;
8 void doit (Object A) {
9 b = (A.Iface)A;
11 public static int Main () {
12 return 0;