2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-2.cs
blob03b891c7ae51d80db95da7bff2d9add42f759aae
1 // cs0019-2.cs: Operator `+' cannot be applied to operands of type `int' and `Test.Zub'
2 // Line : 11
3 using System;
5 class Test {
7 enum Zub :byte {
8 Foo = 99,
9 Bar,
10 Baz
14 static void Main ()
16 int v = 1;
17 object foo = (v + Zub.Foo);