[Mono.Profiler.Log] Reverse managed backtrace in SampleHitEvent's
[mono.git] / mcs / errors / cs1770.cs
1 // CS1770: The expression being assigned to nullable optional parameter `d' must be default value
2 // Line: 8
3
4 using System;
5
6 class C
7 {
8         public static void Foo (DateTime? d = new DateTime ())
9         {
10         }
11 }