[xbuild] Add support for Before/AfterTargets.
[mono.git] / mcs / errors / cs0840.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
4
5 public abstract class Test
6 {
7         public string Property { get; }
8 }