Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / gtest-438.cs
1 using System;
2
3 public class Tests
4 {
5         public virtual ServiceType GetService<ServiceType> (params object[] args) where ServiceType : class
6         {
7                 Console.WriteLine ("asdafsdafs");
8                 return null;
9         }
10
11         public static int Main ()
12         {
13                 new Tests ().GetService<Tests> ();
14                 return 0;
15         }
16 }