10 lines
126 B
C#
Raw Normal View History

// CS0516: Constructor `Sample.Sample()' cannot call itself
// Line: 6
struct Sample {
public Sample ()
: this ()
{
}
}