Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0843.cs
1 // CS0843: An automatically implemented property `S.Short' must be fully assigned before control leaves the constructor. Consider calling the default struct contructor from a constructor initializer
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 }