* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / cs0620.cs
1 // CS0620: An indexer return type cannot be `void'
2 // Line: 5
3
4 class PropertyClass {
5         public void this [int i] { set {}
6         }
7 }