2014-08-13 10:39:27 +01:00
|
|
|
// CS0516: Constructor `Sample.Sample()' cannot call itself
|
2015-01-13 10:44:36 +00:00
|
|
|
// Line: 6
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
class Sample {
|
2015-01-13 10:44:36 +00:00
|
|
|
public Sample ()
|
|
|
|
: this ()
|
|
|
|
{
|
|
|
|
}
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|