Files
linux-packaging-mono/mcs/errors/cs0516-3.cs

10 lines
126 B
C#
Raw Normal View History

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