GenericParameter.cs: override Module properly
[mcs.git] / tests / test-151.cs
blobab523eed1548dc2fd277c5923049831f01752635
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;