Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0118-3.cs
1 // CS0118: `Region.Value' is a `field' but a `type' was expected
2 // Line: 8
3
4 public sealed class Region
5 {
6     int Value;
7     
8     [Value(2)]
9     public Region() {}
10 }