7 lines
142 B
C#
7 lines
142 B
C#
// CS0573: `A.a': Structs without explicit constructors cannot contain members with initializers
|
|
// Line: 5
|
|
|
|
partial struct A {
|
|
int a = 1;
|
|
}
|