X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0445.cs;h=efc703d7370c863ead91693670daf3749b053bc6;hb=59ec6fd3d68cc0e7c8085b95a3b436d4c9a3cef4;hp=e1b32500a625989086ee482e720e2ec5b3135d0e;hpb=b2262f41726a89c8209facb3ea9e4be9582422b5;p=mono.git diff --git a/mcs/errors/cs0445.cs b/mcs/errors/cs0445.cs index e1b32500a62..efc703d7370 100644 --- a/mcs/errors/cs0445.cs +++ b/mcs/errors/cs0445.cs @@ -1,13 +1,13 @@ -// cs0445.cs: Cannot modify the result of an unboxing conversion +// CS0445: Cannot modify the result of an unboxing conversion // Line: 10 struct S { - public int val; + public int val; - public void Do (object o) - { - ((S)o).val = 4; - } + public void Do (object o) + { + ((S)o).val = 4; + } }