repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0030-15.cs
blob
a485f740195ba4af9cc1a1016d2b0b57c14f01d1
1
// CS0030: Cannot convert type `long' to `System.DayOfWeek?'
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
static void
Main
()
9
{
10
var
dow
= (
DayOfWeek
?)
long
.
MaxValue
;
11
}
12
}