a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
288 B
C#
17 lines
288 B
C#
// CS1728: Cannot create delegate from method `int?.GetValueOrDefault()' because it is a member of System.Nullable<T> type
|
|
// Line: 14
|
|
|
|
using System;
|
|
|
|
class C
|
|
{
|
|
delegate int Test ();
|
|
event Test MyEvent;
|
|
|
|
void Error ()
|
|
{
|
|
int? i = 0;
|
|
MyEvent += new Test (i.GetValueOrDefault);
|
|
}
|
|
}
|