[amd64] Make inline function in header static
[mono-project.git] / mcs / tests / gtest-258.cs
blob1c7bca8e3f5cb246d126a6e129dbe1c39d314e36
1 using System;
3 public class A
5 public A ()
6 { }
9 public class B
10 { }
12 class Foo<T>
13 where T : new ()
14 { }
16 class X
18 public static void Main ()
20 Foo<A> foo = new Foo<A> ();