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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0019-13.cs
blob
ee1d2855ed90fb480117c6997f37da5f2551b4a4
1
// cs0019.cs: Operator `>>' cannot be applied to operands of type `E' and `int'
2
// Line : 10
3
4
enum
E
:
byte
{
5
Min
6
}
7
8
class
T
{
9
static void
Main
() {
10
E error
=
E
.
Min
>>
2
;
11
}
12
}