GenericParameter.cs: override Module properly
[mcs.git] / tests / test-anon-51.cs
blobc646c3790fc77c526dab3e3682b7723cab2ed866
1 using System;
3 public delegate void FooDelegate ();
5 public class X {
6 public static readonly FooDelegate Print = delegate {
7 Console.WriteLine ("delegate!");
8 };
10 public static void Main ()
12 Print ();