Removed DeflateStream.UnmanagedRead Read loop. Fixes #19313.
[mono.git] / mcs / errors / cs9004.cs
1 // CS9004: Primary constructor of type `Test' has parameter of same name as containing type
2 // Line: 4
3
4 class Test(object Test) 
5 {
6 }