2007-10-17 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / tests / gtest-xml-2.cs
1 using System.Collections.Generic;
2
3 // <see cref="int?" /> - this is invalid 1584/1658
4 // <see cref="List" />
5 /// <see cref="M:System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke2 ( )" />
6 /// <see cref="Bar" />
7 /// <see cref="ListBase(string)" />
8 /// <see cref="T:ListBase(string)" />
9 /// <see cref="T:ListBase&lt;string)" /><!-- it somehow passes -->
10 /// <see cref="T:List!$%Base()" /><!-- it somehow passes -->
11 /// <see cref="T:$%!" />
12 /// <see cref=".:Bar" />
13 /// <see cref="T:List(int)" />
14 public class Foo
15 {
16         static void Main ()
17         {
18         }
19
20         /// hogehoge
21         public string Bar;
22
23         /// fugafuga
24         public void ListBase (string s)
25         {
26         }
27 }
28
29 // <see cref="System.Nullable&lt;System.Int32&gt;" /> - cs1658/1574
30 /// <see cref="T:System.Nullable&lt;System.Int32&gt;" />
31 /// <see cref="T:System.Nullable(System.Int32)" />
32 public class ListBase<T>
33 {
34 }