2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0501-2.cs
blobb8726ae56dd9f6f079858009c82d49addea16bee
1 // CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial
2 // Line: 6
4 public abstract class Test
6 public string this [string key] { get; set; }