16 lines
176 B
C#
Raw Normal View History

//
// It is legal to call the this() constructor
// on structures.
//
struct Dingus {
public Dingus (int a) : this ()
{
}
}
class X {
public static void Main () {}
}