dlr bug
[mcs.git] / tests / gtest-301.cs
blobe2a333bfd66cdb10f77b69bad141052de1c609e6
1 // Compiler options: -r:gtest-301-lib.dll
3 using System;
5 public class Test
7 [STAThread]
8 public static void Main (string[] args)
10 IShape shape;
12 object[] cargs = new object[1] { "Circle" };
13 shape = Factory<IShape>.CreateInstance (cargs);
16 interface IShape