In ilasm/tests:
[mcs.git] / errors / cs0019-15.cs
blob95c89772563fdc03a8a8835aa62ab86f0ae76303
1 // cs0019.cs: Operator `|' cannot be applied to operands of type `int' and `E'
2 // Line : 10
4 enum E: byte {
5 Min
8 class T {
9 static void Main () {
10 E error = E.Min | 4;