Moved ProviderCollectionTest.cs from System assembly to System.Configuration.
[mono.git] / mcs / errors / cs0501-2.cs
1 // CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial\r
2 // Line: 6\r
3 \r
4 public abstract class Test\r
5 {\r
6         public string this [string key] { get; set; }\r
7 }\r