[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / test-anon-101.cs
blob63d96639f68c5f846cd227f05fe85406f6bb6970
1 using System;
3 delegate void Foo ();
5 class X
7 public void Hello<U> (U u)
8 { }
10 public void Test<T> (T t)
12 T u = t;
13 Hello (u);
14 Foo foo = delegate {
15 Hello (u);
17 foo ();
18 Hello (u);
21 public static void Main ()
23 X x = new X ();
24 x.Test (3);