Merge pull request #1410 from alesliehughes/master
[mono.git] / mcs / errors / cs8043.cs
1 // CS8043: `S.S(long)': Structs with primary constructor cannot specify default constructor initializer
2 // Line: 6
3 // Compiler options: -langversion:experimental
4
5 struct S (int x)
6 {
7         public S (long x)
8                 : this ()
9         {
10         }
11 }