[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0843.cs
blob9849c4ae672385684e1392eae4e8c6c71f60aaf8
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
4 using System;
6 struct S
8 public S (int value)
12 public short Short { get; set; }