2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-634.cs
blobfe33d32b6567b3eb849eb273816b942cfc33f090
1 public class Test
3 delegate void D ();
4 static D d;
6 static public void TestFunc ()
8 return;
10 string testStr;
12 d += delegate ()
14 testStr = "sss";
18 public static void Main (string[] args)
20 TestFunc ();