Removed DeflateStream.UnmanagedRead Read loop. Fixes #19313.
[mono.git] / mcs / errors / cs9002.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 }