Merge pull request #2274 from esdrubal/udpclientreceive
[mono.git] / mcs / tests / gtest-autoproperty-21.cs
1 // Compiler options: -r:gtest-autoproperty-21-lib.dll
2
3 public class Subclass : Base
4 {
5         public override string Value { get; }
6
7         public Subclass ()
8         {
9                 Value = "test";
10         }
11
12         public static void Main ()
13         {
14                 new Subclass ();
15         }
16 }