10 lines
126 B
C#
10 lines
126 B
C#
|
// CS0516: Constructor `Sample.Sample()' cannot call itself
|
||
|
// Line: 6
|
||
|
|
||
|
struct Sample {
|
||
|
public Sample ()
|
||
|
: this ()
|
||
|
{
|
||
|
}
|
||
|
}
|