[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-301-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public static class Factory<BaseType> where BaseType : class
6 {
7     public static BaseType CreateInstance (params object[] args)
8     {
9         return null;
10     }
11 }