remove debug writelines
[mcs.git] / errors / gcs1728-2.cs
blob2d9c4182e387ffa265626069ab99fd1caf7aee08
1 // CS1728: Cannot create delegate from method `long?.GetValueOrDefault()' because it is a member of System.Nullable<T> type
2 // Line: 10
4 using System;
6 class C
8 public static void Main ()
10 Func<long> a = new long?().GetValueOrDefault;