Merge pull request #1300 from esdrubal/unixrelativeorabsolute
[mono.git] / mcs / tests / gtest-autoproperty-10.cs
1 struct S
2 {
3         public decimal P { get; } = -3;
4 }
5
6 class X
7 {
8         public static int Main ()
9         {
10                 var s = new S ();
11                 if (s.P != -3)
12                         return 1;
13
14                 return 0;
15         }
16 }