35621cd0aeb32a2ba7c47bd8e8a43a601ad00a37
[mono.git] / mcs / errors / gcs0843.cs
1 // CS0843: An automatically implemented property `S.Short' must be fully assigned before control leaves the constructor. Consider calling default contructor
2 // Line: 8
3
4 using System;
5
6 struct S
7 {
8         public S (int value)
9         {
10         }
11         
12         public short Short { get; set; }
13 }