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
/
cs0266-6.cs
blob
7a8d8b66574de4eb4980f307e28cd6da039fd266
1
// CS0266: Cannot implicitly convert type `long' to `uint'. An explicit conversion exists (are you missing a cast?)
2
// Line: 7
3
4
namespace
MWFTestApplication
{
5
class
MainWindow
{
6
public enum
Testme
:
uint
{
7
value
= (
1L
<<
1
)
8
}
9
}
10
}