GenericParameter.cs: override Module properly
[mcs.git] / tests / test-xml-018.cs
blob194f44f331ba130f3014b7fdaf046b74e52862bc
1 // Compiler options: -doc:xml-018.xml
2 using System;
4 namespace Testing
6 public class Test
8 public static void Main ()
12 /// <summary>
13 /// comment for indexer
14 /// </summary>
15 public string this [int i] {
16 get { return null; }
19 /// <summary>
20 /// comment for indexer
21 /// </summary>
22 public string this [string s] {
23 get { return null; }
26 /// <summary>
27 /// comment for indexer wit multiple parameters
28 /// </summary>
29 public string this [int i, Test t] {
30 get { return null; }