Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / test-545.cs
1 //
2 // It is legal to call the this() constructor
3 // on structures.
4 //
5
6 struct Dingus {
7         public Dingus (int a) : this ()
8                 {
9                 }
10         
11 }
12
13 class X {
14         public static void Main () {}
15 }