Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8037.cs
1 // CS8037: `S.S(long)': Instance constructor of type with primary constructor must specify `this' constructor initializer
2 // Line: 6
3 // Compiler options: -langversion:experimental
4
5 class S (int arg)
6 {
7         public S (long l)
8         {
9         }
10 }