8 lines
189 B
C#
8 lines
189 B
C#
|
// CS0522: `SampleStruct.SampleStruct(int)': Struct constructors cannot call base constructors
|
||
|
// Line: 5
|
||
|
|
||
|
struct SampleStruct {
|
||
|
public SampleStruct (int value): base (value) {}
|
||
|
}
|
||
|
|