Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-xml-040.cs
1 // Compiler options: -doc:xml-040.xml -warnaserror -warn:4
2 using System.Collections;
3
4 /// <summary><see cref="IDictionary.this[object]" /></summary>
5 public class Test {
6         static void Main () {
7         }
8
9         /// <summary> test indexer doc </summary>
10         public string this [string name] {
11                 get { return null; }
12         }
13 }
14