[amd64] Save missing register
[mono.git] / mcs / errors / cs0568.cs
1 // CS0568: Structs cannot contain explicit parameterless constructors
2 // Line: 6
3
4 struct S
5 {
6         public S ()
7         {
8         }
9 }