2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / gcs1728.cs
blob97e96603f2c75ac216c594998bba6d52de868f92
1 // CS1728: Cannot use method `int?.GetValueOrDefault()' as delegate creation expression because it is member of Nullable type
2 // Line: 14
4 using System;
6 class C
8 delegate int Test ();
9 event Test MyEvent;
11 void Error ()
13 int? i = 0;
14 MyEvent += new Test (i.GetValueOrDefault);