linux-packaging-mono/mcs/tests/gtest-autoproperty-21.cs

16 lines
225 B
C#
Raw Normal View History

// Compiler options: -r:gtest-autoproperty-21-lib.dll
public class Subclass : Base
{
public override string Value { get; }
public Subclass ()
{
Value = "test";
}
public static void Main ()
{
new Subclass ();
}
}