2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-438.cs
blob3a71a66d9d163826d55b2cf0b9668dcafd62ae4e
1 using System;
3 public class Tests
5 public virtual ServiceType GetService<ServiceType> (params object[] args) where ServiceType : class
7 Console.WriteLine ("asdafsdafs");
8 return null;
11 public static int Main ()
13 new Tests ().GetService<Tests> ();
14 return 0;