X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0620.cs;h=f55503d56c048875d22aba8e801daedffee82417;hb=815e7befb3af5ef8e8519fb9541a8e6bf09214f3;hp=d6db0c59a380449bf4eb3076c54ddc8686eadbf6;hpb=b6b13e72e91d5b529a6306ce53bda685932c77db;p=mono.git diff --git a/mcs/errors/cs0620.cs b/mcs/errors/cs0620.cs index d6db0c59a38..f55503d56c0 100644 --- a/mcs/errors/cs0620.cs +++ b/mcs/errors/cs0620.cs @@ -1,7 +1,8 @@ -// cs0620.cs: Indexers cannot have void type +// CS0620: `PropertyClass.this[int]': indexer return type cannot be `void' // Line: 5 class PropertyClass { - public void this [int i] { set {} + public void this [int i] { + set {} } }