16 lines
176 B
C#
16 lines
176 B
C#
|
//
|
||
|
// It is legal to call the this() constructor
|
||
|
// on structures.
|
||
|
//
|
||
|
|
||
|
struct Dingus {
|
||
|
public Dingus (int a) : this ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
class X {
|
||
|
public static void Main () {}
|
||
|
}
|