Merge pull request #1193 from esdrubal/decimal-round
[mono.git] / mcs / errors / cs8037.cs
1 // CS9002: `S.S(long)': Instance constructor of type with primary constructor must specify `this' constructor initializer
2 // Line: 6
3
4 class S (int arg)
5 {
6         public S (long l)
7         {
8         }
9 }