Fix timestamp.
[mono.git] / mcs / errors / gcs0842.cs
1 // CS0842: Automatically implemented property `S.Value' cannot be used inside a type with an explicit StructLayout attribute\r
2 // Line: 10\r
3 \r
4 using System.Runtime.InteropServices;\r
5 \r
6 [StructLayout(LayoutKind.Explicit)]\r
7 class S\r
8 {\r
9         public int Value {\r
10                 get; set;\r
11         }\r
12 }\r