2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-xml-030.cs
blob3b2cdd922d434d561f11ad0ded7b9a5ecf0f9f6c
1 // Compiler options: -doc:xml-030.xml -warn:4 -warnaserror
2 using System;
4 class Test
6 static void Main () {}
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>
19 // <see cref="T:System.Text.RegularExpressions"/> .. csc incorrectly allows it
20 // <see cref="System.Text.RegularExpressions.Regex[]"/> ... csc does not allow it.
22 public void foo2() {
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) {