2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs1587-17.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:2
2 using System;
3
4 namespace TopNS
5 {
6         class Foo
7         {
8                 string this [string bar] {
9                         get { /** incorrect */ return ""; }
10                         set { }
11                 }
12         }
13 }