* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-xml-030.cs
1 // Compiler options: -doc:xml-030.xml -warn:4 -warnaserror
2 using System;
3
4 class Test
5 {
6         static void Main () {}
7
8         /// <summary>
9         /// some summary
10         /// </summary>
11         /// <value>
12         /// <see cref="T:Test[]"/>
13         /// <see cref="T:System.Text.RegularExpressions.Regex"/>
14         /// <see cref="System.Text.RegularExpressions.Regex"/>
15         /// <see cref="System.Text.RegularExpressions"/>
16         /// <see cref="T:System.Text.RegularExpressions.Regex[]"/>
17         /// </value>
18         //
19         // <see cref="T:System.Text.RegularExpressions"/> .. csc incorrectly allows it
20         // <see cref="System.Text.RegularExpressions.Regex[]"/> ... csc does not allow it.
21         //
22         public void foo2() {
23         }
24
25         /// <summary>
26         /// <see cref="String.Format(string, object[])" />.
27         /// <see cref="string.Format(string, object[])" />.
28         /// <see cref="String.Format(string, object [ ])" />.
29         /// <see cref="string.Format(string, object [ ])" />.
30         /// </summary>
31         /// <param name="line">The formatting string.</param>
32         /// <param name="args">The object array to write into format string.</param>
33         public void foo3(string line, params object[] args) {
34         }
35 }