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