[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-async-53.cs
blob3ffee8c4d501b505fe96692d637c56a49dba270e
1 using System;
3 class Y
7 class X
9 public event Action<int, string> E;
11 void Foo ()
13 var nc = new Y ();
15 E += async (arg1, arg2) => {
16 nc = null;
19 E (1, "h");
22 public static void Main ()
24 var x = new X ();
25 x.Foo ();