2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-3.cs
blob03798c21e09516ace99bf3e6eb8c0dc9f109f495
1 // cs0019-3.cs: Operator `+' cannot be applied to operands of type `Test.Zub' 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 object v = (Zub.Foo + Zub.Foo);