b7f9da825f6838076d0c1d10d30d4cbcad3a7f53
[mono.git] / mcs / errors / cs8043.cs
1 // CS8043: `S.S(long)': Structs with primary constructor cannot specify default constructor initializer
2 // Line: 6
3
4 struct S (int x)
5 {
6         public S (long x)
7                 : this ()
8         {
9         }
10 }