2007-04-17 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mcs / errors / gcs1728.cs
1 // CS1728: Cannot use method `int?.GetValueOrDefault()' as delegate creation expression because it is member of Nullable type
2 // Line: 14
3
4 using System;
5
6 class C
7 {
8         delegate int Test ();
9         event Test MyEvent;
10
11         void Error ()
12         {
13                 int? i = 0;
14                 MyEvent += new Test (i.GetValueOrDefault);
15         }
16 }