add implementation for stpcpy
[mono-project/dkf.git] / mcs / tests / gtest-anon-63.cs
blob2d140b821670ae6bc72f08e644acacb5f3aef6e3
1 using System;
3 class A
5 public virtual void Foo<T> (T a, params string[] b) where T : struct
10 class B : A
12 public void Test (int v)
14 Action a = () => base.Foo<int> (b: "n", a: v);
15 a ();
18 public void Test2<T> (T b) where T : struct
20 Action a2 = () => base.Foo<T> (b, "as", "asdfa");
24 class Test
26 public static void Main ()
28 new B ().Test (1);