X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0019-21.cs;h=8deee1fa55d830b71e9f9ceb1d80aa0906202e8f;hb=edbc5c2334e10836479d1cc528c68d4ad5b47440;hp=d8ca656da8fa95ac15af218862c2b1d212a76e3c;hpb=434e59e4bc6cda7d62ad6725a8b5a590ff9c9d1f;p=mono.git diff --git a/mcs/errors/cs0019-21.cs b/mcs/errors/cs0019-21.cs index d8ca656da8f..8deee1fa55d 100644 --- a/mcs/errors/cs0019-21.cs +++ b/mcs/errors/cs0019-21.cs @@ -1,13 +1,13 @@ // CS0019: Operator `+' cannot be applied to operands of type `AA' and `uint' -// Line: 11 - -enum AA : byte { a, b = 200 } - -public class C -{ - public static void Main () - { - const uint ul = 1; - const AA b = AA.a + ul; - } -} \ No newline at end of file +// Line: 11 + +enum AA : byte { a, b = 200 } + +public class C +{ + public static void Main () + { + const uint ul = 1; + AA b = AA.a + ul; + } +}