repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0266-6.cs
blob
cb87a667b5e93a3482eabb27fd6495eaf7f43e75
1
// cs0266.cs: 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
}