add ISafeSerializationData
[mcs.git] / tests / gtest-anon-6.cs
blob9fc04683460a93546531aa0cc56dfb29c8780161
1 using System;
3 delegate void Foo<R,S> (R r, S s);
5 class X
7 public void Hello<U,V> (U u, V v)
8 { }
10 public void Test<A,B,C> (A a, B b, C c)
12 Hello (a, b);
13 C d = c;
14 Foo<A,int> foo = delegate (A i, int j) {
15 Hello (i, c);
16 Hello (i, j);
20 static void Main ()
22 X x = new X ();
23 x.Test (3, Math.PI, 1 << 8);