add ISafeSerializationData
[mcs.git] / tests / test-728.cs
blob08ce96c518f12ed61cd66f14669afd3960e0c41d
1 using System;
3 public class Tests
5 enum MyEnumUlong : long
7 Value_1,
8 Value_3 = 2
11 public static int Main ()
13 var d = MyEnumUlong.Value_1;
14 d = d + (byte) 1;
15 d += (byte) 1;
17 if (d != MyEnumUlong.Value_3)
18 return 1;
20 return 0;