a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
293 B
C#
13 lines
293 B
C#
// CS0843: An automatically implemented property `S.A' must be fully assigned before control leaves the constructor. Consider calling the default struct contructor from a constructor initializer
|
|
// Line: 8
|
|
|
|
public struct S
|
|
{
|
|
public int A { get; set;}
|
|
|
|
public S (int a)
|
|
{
|
|
this.A = a;
|
|
}
|
|
}
|