2010-04-02 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0501-2.cs
blobaa46d0ad9b8c061145c574f64a923bff98f1a700
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; }