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