Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0030-15.cs
bloba485f740195ba4af9cc1a1016d2b0b57c14f01d1
1 // CS0030: Cannot convert type `long' to `System.DayOfWeek?'
2 // Line: 10
4 using System;
6 class C
8 static void Main ()
10 var dow = (DayOfWeek?) long.MaxValue;