* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[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 }