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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0019-15.cs
blob
cdfe5e2ae543dfc87af063f601287a0e22f35ac4
1
// CS0019: 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
|
4
;
11
}
12
}