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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0019-3.cs
blob
03798c21e09516ace99bf3e6eb8c0dc9f109f495
1
// cs0019-3.cs: Operator `+' cannot be applied to operands of type `Test.Zub' and `Test.Zub'
2
// Line : 11
3
using
System
;
4
5
class
Test
{
6
7
enum
Zub
:
byte
{
8
Foo
=
99
,
9
Bar
,
10
Baz
11
}
12
13
14
static void
Main
()
15
{
16
object
v
= (
Zub
.
Foo
+
Zub
.
Foo
);
17
}
18
}
19