summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0030-15.cs
blob: a485f740195ba4af9cc1a1016d2b0b57c14f01d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0030: Cannot convert type `long' to `System.DayOfWeek?'
// Line: 10

using System;

class C
{
    static void Main ()
    {
		var dow = (DayOfWeek?) long.MaxValue;
    }
}