Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-070.cs
1 namespace Martin
2 {
3         public class Test<T>
4         {
5                 public static int Foo ()
6                 {
7                         return 0;
8                 }
9         }
10 }
11
12 class Foo<T>
13 {
14         public Foo (int a)
15         { }
16
17         public Foo ()
18                 : this (Martin.Test<T>.Foo ())
19         { }
20 }
21
22 class X
23 {
24         public static void Main ()
25         {
26         }
27 }