* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / gcs0840.cs
1 // CS0840: `Test.Property.get' must have a body because it is not marked abstract or extern. The property can be automatically implemented when you define both accessors
2 // Line: 7
3 // Compiler options: -langversion:linq
4
5 public abstract class Test
6 {
7         public string Property { get; }
8 }